summaryrefslogtreecommitdiffstats
path: root/lib/libc_r/uthread/uthread_sigwait.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc_r/uthread/uthread_sigwait.c')
-rw-r--r--lib/libc_r/uthread/uthread_sigwait.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/libc_r/uthread/uthread_sigwait.c b/lib/libc_r/uthread/uthread_sigwait.c
index 4f95190..63c7093 100644
--- a/lib/libc_r/uthread/uthread_sigwait.c
+++ b/lib/libc_r/uthread/uthread_sigwait.c
@@ -43,9 +43,6 @@ sigwait(const sigset_t * set, int *sig)
int status;
sigset_t oset;
- /* Block signals: */
- _thread_kern_sig_block(&status);
-
/* Save the current sigmal mask: */
oset = _thread_run->sigmask;
@@ -55,18 +52,12 @@ sigwait(const sigset_t * set, int *sig)
/* Wait for a signal: */
_thread_kern_sched_state(PS_SIGWAIT, __FILE__, __LINE__);
- /* Block signals again: */
- _thread_kern_sig_block(NULL);
-
/* Return the signal number to the caller: */
*sig = _thread_run->signo;
/* Restore the signal mask: */
_thread_run->sigmask = oset;
- /* Unblock signals: */
- _thread_kern_sig_unblock(status);
-
/* Return the completion status: */
return (ret);
}
OpenPOWER on IntegriCloud