From f0b1a6c8762a6e2ec698fa7e253399b327047e34 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 24 Aug 2001 21:47:53 +0000 Subject: [PATCH] * 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. --- ChangeLog | 10 ++++++++++ hurd/Versions | 5 +++++ sysdeps/posix/shm_unlink.c | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 46bce19..0d3dab8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2001-08-23 Roland McGrath + + * 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 * nss/test-netdb.c (test_hosts): Don't segfault if gethostname diff --git a/hurd/Versions b/hurd/Versions index 4b98917..ffd9b62 100644 --- a/hurd/Versions +++ b/hurd/Versions @@ -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) diff --git a/sysdeps/posix/shm_unlink.c b/sysdeps/posix/shm_unlink.c index d262aef..79f6751 100644 --- a/sysdeps/posix/shm_unlink.c +++ b/sysdeps/posix/shm_unlink.c @@ -56,7 +56,7 @@ shm_unlink (const char *name) name, namelen + 1); - return __unlink (name); + return unlink (name); } #endif -- 2.7.4