X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FForkTest.c;h=6f733876f528246abb75a03fd12198deccf48f31;hp=09035d5a66b1583d05a41c166c1ae8754864f74f;hb=351af2e8af7ee3a44410e3837934b45edfe10fc8;hpb=fbbc5ab33a3e944b77298ce9019b88a4a01c6c9c diff --git a/sources/ForkTest.c b/sources/ForkTest.c index 09035d5..6f73387 100644 --- a/sources/ForkTest.c +++ b/sources/ForkTest.c @@ -26,7 +26,7 @@ * * Usage: forktest -h give all info's * - * $Id: ForkTest.c,v 1.2 2001/09/09 22:45:34 piccardi Exp $ + * $Id: ForkTest.c,v 1.3 2001/09/11 21:01:09 piccardi Exp $ * ****************************************************************/ /* @@ -91,7 +91,7 @@ int main(int argc, char *argv[]) } if (pid == 0) { /* child */ printf("Child %d successfully executing\n", ++i); - sleep(2); + sleep(3); printf("Child %d exiting\n", i); exit(0); } else { /* parent */