init: for paranoid reasons, restore SIGCONT too.
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 14 Dec 2009 02:08:30 +0000 (03:08 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 14 Dec 2009 02:08:30 +0000 (03:08 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
init/init.c

index 89bbafd..669085e 100644 (file)
@@ -270,6 +270,7 @@ static void reset_sighandlers_and_unblock_sigs(void)
                + (1 << SIGINT)
                + (1 << SIGHUP)
                + (1 << SIGTSTP)
+               + (1 << SIGSTOP)
                , SIG_DFL);
        sigprocmask_allsigs(SIG_UNBLOCK);
 }