diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 00:34:31 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 00:36:33 +0000 |
commit | 82dbf555a4d41690f63b94ccb4db4bf43d873aa0 (patch) | |
tree | 953438aa24310b2edd266dc9a056e948d4e53c32 /sysdeps | |
parent | 62108dbf615381e08369491921f388a718dd002e (diff) | |
download | glibc-82dbf555a4d41690f63b94ccb4db4bf43d873aa0.zip glibc-82dbf555a4d41690f63b94ccb4db4bf43d873aa0.tar.gz glibc-82dbf555a4d41690f63b94ccb4db4bf43d873aa0.tar.bz2 |
hurd: Avoid more libc.so local PLTs
* hurd/catch-signal.c (__hurd_catch_signal): Call __libc_siglongjmp
instead if siglongjmp.
(hurd_safe_memmove): Call __libc_longjmp instead of longjmp.
* hurd/hurdfault.c (faulted): Call __libc_longjmp instead of longjmp.
* include/setjmp.h (__libc_siglongjmp, __libc_longjmp): New hidden
prototypes.
* libio/iolibio.h (_IO_puts): New hidden prototype.
* libio/ioputs.c (_IO_puts): New hidden def.
* setjmp/longjmp.c (__libc_longjmp, __libc_siglongjmp): New hidden
defs.
* sysdeps/mach/hurd/sigwait.c (__sigwait): Call __libc_longjmp instead
of longjmp.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/sigwait.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/sigwait.c b/sysdeps/mach/hurd/sigwait.c index ce17cce..321ab46 100644 --- a/sysdeps/mach/hurd/sigwait.c +++ b/sysdeps/mach/hurd/sigwait.c @@ -59,7 +59,7 @@ __sigwait (const sigset_t *set, int *sig) handler (int sig) { assert (sig == signo); - longjmp (buf, 1); + __libc_longjmp (buf, 1); } wait = __mach_reply_port (); |