about summary refs log tree commit diff
path: root/hurd/catch-signal.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-03 23:00:14 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-03 23:06:00 +0200
commit5e17a480f83061a0dd0228b7e6415520f3136f94 (patch)
treef926aabcfcf544f85f6d5af86ac766dfe4a4ed1b /hurd/catch-signal.c
parent51722f4dc796fc0e071f9d0350b03a65ba5c163a (diff)
downloadglibc-5e17a480f83061a0dd0228b7e6415520f3136f94.tar.gz
glibc-5e17a480f83061a0dd0228b7e6415520f3136f94.tar.xz
glibc-5e17a480f83061a0dd0228b7e6415520f3136f94.zip
Revert parts of "hurd: Avoid more libc.so local PLTs"
This reverts parts of commit 82dbf555a4d41690f63b94ccb4db4bf43d873aa0.
Diffstat (limited to 'hurd/catch-signal.c')
-rw-r--r--hurd/catch-signal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/catch-signal.c b/hurd/catch-signal.c
index a00ccef4fb..56ce86532d 100644
--- a/hurd/catch-signal.c
+++ b/hurd/catch-signal.c
@@ -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 =
     {