diff options
author | Glenn L McGrath | 2003-09-03 12:18:42 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-09-03 12:18:42 +0000 |
commit | 99bd5adf995ee0f83bdda92384137ae810c4c92b (patch) | |
tree | 253331bcdcf278ef28a6f67f87faf80786b78e97 /init | |
parent | 759d7ececd56e5b25bbfcc54a04bf939d80c7ee9 (diff) | |
download | busybox-99bd5adf995ee0f83bdda92384137ae810c4c92b.zip busybox-99bd5adf995ee0f83bdda92384137ae810c4c92b.tar.gz |
more crond+crontab integrating with loginutil libbb functions and deleted
patch from Thomas Gleixner to init.
Viodz last_patch_108
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/init/init.c b/init/init.c index 2f44e13..26bbc34 100644 --- a/init/init.c +++ b/init/init.c @@ -829,13 +829,6 @@ static void cont_handler(int sig) got_cont = 1; } -/* Reap any zombie processes that are reparented to init */ -static void child_handler(int sig) -{ - int status; - while ( wait3(&status, WNOHANG, NULL) > 0 ); -} - #endif /* ! DEBUG_INIT */ static void new_init_action(int action, const char *command, const char *cons) @@ -1076,7 +1069,6 @@ extern int init_main(int argc, char **argv) signal(SIGCONT, cont_handler); signal(SIGSTOP, stop_handler); signal(SIGTSTP, stop_handler); - signal(SIGCHLD, child_handler); /* Turn off rebooting via CTL-ALT-DEL -- we get a * SIGINT on CAD so we can shut things down gracefully... */ |