Vanilla Development Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/newstartd



Date:	Sunday February 20, 19100 @ 7:36
Author:	jeffno

Update of /home/netrek/cvsroot/Vanilla/newstartd
In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv28877/newstartd

Modified Files:
	newstartd.c 
Log Message:
Added a missing else that was causing zombie
processes if more than 1 process exited at the same
time.

****************************************

Index: Vanilla/newstartd/newstartd.c
diff -u Vanilla/newstartd/newstartd.c:1.16 Vanilla/newstartd/newstartd.c:1.17
--- Vanilla/newstartd/newstartd.c:1.16	Thu Dec 30 00:40:00 1999
+++ Vanilla/newstartd/newstartd.c	Sun Feb 20 07:36:16 2000
@@ -1,7 +1,7 @@
-/* 	$Id: newstartd.c,v 1.16 1999/12/30 06:40:00 cameron Exp $	 */
+/* 	$Id: newstartd.c,v 1.17 2000/02/20 13:36:16 jeffno Exp $	 */
 
 #ifndef lint
-static char vcid[] = "$Id: newstartd.c,v 1.16 1999/12/30 06:40:00 cameron Exp $";
+static char vcid[] = "$Id: newstartd.c,v 1.17 2000/02/20 13:36:16 jeffno Exp $";
 #endif /* lint */
 
 /*
@@ -617,7 +617,8 @@
       if (debug) fprintf (stderr, "active--: %d: pid %d terminated\n", 
 			  active, pid);
     }
-    break;
+    else
+        break;
   }
 
 #ifdef REAPER_HANDLER