* hurd/Versions (libc: GLIBC_2.2.5): New set; add _hurd_raise_signal,
authorRoland McGrath <roland@gnu.org>
Fri, 24 Aug 2001 21:47:53 +0000 (21:47 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 24 Aug 2001 21:47:53 +0000 (21:47 +0000)
_hurdsig_interrupt_timeout, _hurdsig_fault_preemptor.

* sysdeps/posix/shm_unlink.c (shm_unlink): __unlink -> unlink.

* mach/Versions (libc: GLIBC_2.2.5): New set; add __mach_msg_destroy,
__mach_reply_port.

ChangeLog
hurd/Versions
sysdeps/posix/shm_unlink.c

index 46bce19567d8fa108c99995262a6079be501aaf4..0d3dab8ea452d7e0943c4c14a50077b782b3973f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2001-08-23  Roland McGrath  <roland@frob.com>
+
+       * hurd/Versions (libc: GLIBC_2.2.5): New set; add _hurd_raise_signal,
+       _hurdsig_interrupt_timeout, _hurdsig_fault_preemptor.
+
+       * sysdeps/posix/shm_unlink.c (shm_unlink): __unlink -> unlink.
+
+       * mach/Versions (libc: GLIBC_2.2.5): New set; add __mach_msg_destroy,
+       __mach_reply_port.
+
 2001-08-24  Ulrich Drepper  <drepper@redhat.com>
 
        * nss/test-netdb.c (test_hosts): Don't segfault if gethostname
index 4b9891749167a87bfcac7a655218b5d4c231e666..ffd9b62fd8f1e7e1d770c07af22d4b305193e4d9 100644 (file)
@@ -138,6 +138,11 @@ libc {
   GLIBC_2.2.5 {
     # This always existed as an inline but the real function never exported.
     __hurd_fail;
+
+    # internal symbols used by other libraries (e.g. librt)
+    _hurd_raise_signal;
+    _hurdsig_interrupt_timeout;
+    _hurdsig_fault_preemptor; _hurdsig_fault_env;
   }
 
 %if !SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
index d262aef26574af0de781d583865613e9a17075d7..79f6751ebd74201f67f915cb0485dad2e968152e 100644 (file)
@@ -56,7 +56,7 @@ shm_unlink (const char *name)
             name, namelen + 1);
 
 
-  return __unlink (name);
+  return unlink (name);
 }
 
 #endif