diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-31 01:02:07 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-31 01:02:07 +0000 |
commit | cab28aa7de336b0a39ef43ce0eb035a2cab30d4d (patch) | |
tree | 1f42544e65cd60dea87e631942506f1a5b206823 /runit/runsv.c | |
parent | 6c62246a3598efd3d1e9264f8d9f44d8d93a6453 (diff) | |
download | busybox-w32-cab28aa7de336b0a39ef43ce0eb035a2cab30d4d.tar.gz busybox-w32-cab28aa7de336b0a39ef43ce0eb035a2cab30d4d.tar.bz2 busybox-w32-cab28aa7de336b0a39ef43ce0eb035a2cab30d4d.zip |
init: preparatory patch, no code changes
Diffstat (limited to 'runit/runsv.c')
-rw-r--r-- | runit/runsv.c | 4 |
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; */ |