mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* 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.
This commit is contained in:
parent
d7b734741d
commit
f0b1a6c876
10
ChangeLog
10
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
|
||||
|
@ -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)
|
||||
|
@ -56,7 +56,7 @@ shm_unlink (const char *name)
|
||||
name, namelen + 1);
|
||||
|
||||
|
||||
return __unlink (name);
|
||||
return unlink (name);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user