1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

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.
This commit is contained in:
Samuel Thibault
2018-04-03 00:34:31 +00:00
parent 62108dbf61
commit 82dbf555a4
8 changed files with 23 additions and 4 deletions

View File

@ -46,3 +46,4 @@ _IO_puts (const char *str)
}
weak_alias (_IO_puts, puts)
libc_hidden_def (_IO_puts)