diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 456aca4f0..a01c8fa8b 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -4217,7 +4217,7 @@ wait_block_or_sig(int *status) | |||
4217 | /* Children exist, but none are ready. Sleep until interesting signal */ | 4217 | /* Children exist, but none are ready. Sleep until interesting signal */ |
4218 | #if 1 | 4218 | #if 1 |
4219 | sigfillset(&mask); | 4219 | sigfillset(&mask); |
4220 | sigprocmask_SIG_SETMASK(&mask); /* mask is updated */ | 4220 | sigprocmask2(SIG_SETMASK, &mask); /* mask is updated */ |
4221 | while (!got_sigchld && !pending_sig) | 4221 | while (!got_sigchld && !pending_sig) |
4222 | sigsuspend(&mask); | 4222 | sigsuspend(&mask); |
4223 | sigprocmask(SIG_SETMASK, &mask, NULL); | 4223 | sigprocmask(SIG_SETMASK, &mask, NULL); |