init: for paranoid reasons, restore SIGCONT too.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
1_16_stable
Denys Vlasenko 2009-12-14 03:08:30 +01:00
parent bcc6ec9b7e
commit 18f89128e5
1 changed files with 1 additions and 0 deletions

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