[BusyBox-cvs] busybox/init init.c,1.194,1.195

Glenn McGrath bug1 at busybox.net
Wed Sep 3 12:18:43 UTC 2003


Update of /var/cvs/busybox/init
In directory winder:/tmp/cvs-serv9038/init

Modified Files:
	init.c 
Log Message:
more crond+crontab integrating with loginutil libbb functions and deleted
patch from Thomas Gleixner to init.
Viodz last_patch_108


Index: init.c
===================================================================
RCS file: /var/cvs/busybox/init/init.c,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -d -r1.194 -r1.195
--- init.c	2 Sep 2003 02:36:10 -0000	1.194
+++ init.c	3 Sep 2003 12:18:39 -0000	1.195
@@ -829,13 +829,6 @@
 	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 @@
 	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... */




More information about the busybox-cvs mailing list