init: for paranoid reasons, restore SIGCONT too.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-12-14 03:08:30 +01:00
parent bcc6ec9b7e
commit 18f89128e5

View 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);
}