Don't mask all signals in the subprocess handler

fixes #12940
This commit is contained in:
Gunnar Beutner 2016-10-24 08:42:40 +02:00
parent d70d7797c8
commit c0bc156696
1 changed files with 0 additions and 4 deletions

View File

@ -228,10 +228,6 @@ static Value ProcessWaitPIDImpl(struct msghdr *msgh, const Dictionary::Ptr& requ
static void ProcessHandler(void)
{
sigset_t mask;
sigfillset(&mask);
sigprocmask(SIG_SETMASK, &mask, NULL);
rlimit rl;
if (getrlimit(RLIMIT_NOFILE, &rl) >= 0) {
rlim_t maxfds = rl.rlim_max;