aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-12-14 03:08:30 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-12-14 03:08:30 +0100
commit18f89128e58423f0335f5c9b32039e41651ac209 (patch)
tree91fe64105b3c764dba25cc3c59ce940604605c7a
parentbcc6ec9b7e19087254ef323bcc503bb8b6872d75 (diff)
downloadbusybox-w32-18f89128e58423f0335f5c9b32039e41651ac209.tar.gz
busybox-w32-18f89128e58423f0335f5c9b32039e41651ac209.tar.bz2
busybox-w32-18f89128e58423f0335f5c9b32039e41651ac209.zip
init: for paranoid reasons, restore SIGCONT too.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--init/init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/init.c b/init/init.c
index 89bbafd13..669085eae 100644
--- a/init/init.c
+++ b/init/init.c
@@ -270,6 +270,7 @@ static void reset_sighandlers_and_unblock_sigs(void)
270 + (1 << SIGINT) 270 + (1 << SIGINT)
271 + (1 << SIGHUP) 271 + (1 << SIGHUP)
272 + (1 << SIGTSTP) 272 + (1 << SIGTSTP)
273 + (1 << SIGSTOP)
273 , SIG_DFL); 274 , SIG_DFL);
274 sigprocmask_allsigs(SIG_UNBLOCK); 275 sigprocmask_allsigs(SIG_UNBLOCK);
275} 276}