aboutsummaryrefslogtreecommitdiff
path: root/runit/runsv.c
diff options
context:
space:
mode:
Diffstat (limited to 'runit/runsv.c')
-rw-r--r--runit/runsv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runit/runsv.c b/runit/runsv.c
index 123720864..f83d58283 100644
--- a/runit/runsv.c
+++ b/runit/runsv.c
@@ -455,9 +455,9 @@ int runsv_main(int argc UNUSED_PARAM, char **argv)
455 ndelay_on(selfpipe.wr); 455 ndelay_on(selfpipe.wr);
456 456
457 sig_block(SIGCHLD); 457 sig_block(SIGCHLD);
458 bb_signals_recursive(1 << SIGCHLD, s_child); 458 bb_signals_recursive_norestart(1 << SIGCHLD, s_child);
459 sig_block(SIGTERM); 459 sig_block(SIGTERM);
460 bb_signals_recursive(1 << SIGTERM, s_term); 460 bb_signals_recursive_norestart(1 << SIGTERM, s_term);
461 461
462 xchdir(dir); 462 xchdir(dir);
463 /* bss: svd[0].pid = 0; */ 463 /* bss: svd[0].pid = 0; */