summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/sysdeps')
-rw-r--r--libpthread/nptl/sysdeps/pthread/sigaction.c2
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/sigaction.c b/libpthread/nptl/sysdeps/pthread/sigaction.c
index b1efb5c37..6ab8a5279 100644
--- a/libpthread/nptl/sysdeps/pthread/sigaction.c
+++ b/libpthread/nptl/sysdeps/pthread/sigaction.c
@@ -42,7 +42,7 @@ __sigaction (sig, act, oact)
return -1;
}
- return __sigaction_internal (sig, act, oact);
+ return __libc_sigaction (sig, act, oact);
}
weak_alias(__sigaction, sigaction)
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c
index 4342cedf1..c6ea739d3 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c
@@ -68,8 +68,10 @@ do_sigwaitinfo (const sigset_t *set, siginfo_t *info)
/* Return any pending signal or wait for one for the given time. */
-int attribute_hidden
-__sigwaitinfo (const sigset_t *set, siginfo_t *info)
+int
+__sigwaitinfo (set, info)
+ const sigset_t *set;
+ siginfo_t *info;
{
if (SINGLE_THREAD_P)
return do_sigwaitinfo (set, info);