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:
@ -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 =
|
||||
{
|
||||
|
Reference in New Issue
Block a user