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

Revert parts of "hurd: Avoid more libc.so local PLTs"

This reverts parts of commit 82dbf555a4.
This commit is contained in:
Samuel Thibault
2018-04-03 23:00:14 +02:00
parent 51722f4dc7
commit 5e17a480f8
6 changed files with 4 additions and 20 deletions

View File

@ -32,7 +32,7 @@ __hurd_catch_signal (sigset_t sigset,
instance calling hurd_catch_signal again would then dump core. */
sigjmp_buf buf;
void throw (int signo, long int sigcode, struct sigcontext *scp)
{ __libc_siglongjmp (buf, scp->sc_error ?: EGRATUITOUS); }
{ siglongjmp (buf, scp->sc_error ?: EGRATUITOUS); }
struct hurd_signal_preemptor preemptor =
{
@ -121,7 +121,7 @@ hurd_safe_memmove (void *dest, const void *src, size_t nbytes)
{
jmp_buf buf;
void throw (int signo, long int sigcode, struct sigcontext *scp)
{ __libc_longjmp (buf, scp->sc_error ?: EGRATUITOUS); }
{ longjmp (buf, scp->sc_error ?: EGRATUITOUS); }
struct hurd_signal_preemptor src_preemptor =
{