Finita fork, inizio terminazione e wait
[gapil.git] / sources / ForkTest.c
1 /* ForkTest.c
2  * 
3  * Copyright (C) 2001 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program ForkTest.c: 
22  * Program to test process creation
23  *
24  * Author: Simone Piccardi
25  * Sep. 2001
26  *
27  * Usage: forktest -h give all info's
28  *
29  * $Id: ForkTest.c,v 1.4 2001/09/14 22:16:41 piccardi Exp $
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <errno.h>       /* error definitions and routines */ 
36 #include <stdlib.h>      /* C standard library */
37 #include <unistd.h>      /* unix standard library */
38 #include <stdio.h>       /* standard I/O library */
39 #include <string.h>      /* string functions */
40
41 /* Help printing routine */
42 void usage(void);
43
44 int main(int argc, char *argv[])
45 {
46 /* 
47  * Variables definition  
48  */
49     int nchild, i;
50     pid_t pid;
51     int wait_child=0;
52     int wait_parent=0;
53     /*
54      * Input section: decode command line parameters 
55      * Use getopt function
56      */
57     opterr = 0;  /* don't want writing to stderr */
58     while ( (i = getopt(argc, argv, "hp:c:")) != -1) {
59         switch (i) {
60         /* 
61          * Handling options 
62          */ 
63         case 'h':   /* help option */
64             printf("Wrong -h option use\n");
65             usage();
66             return -1;
67             break;
68         case 'c':   /* take wait time for childen */
69             wait_child=strtol(optarg, NULL, 10);    /* convert input */
70             break;
71         case 'p':   /* take wait time for childen */
72             wait_parent=strtol(optarg, NULL, 10);   /* convert input */
73             break;
74         case '?':   /* unrecognized options */
75             printf("Unrecognized options -%c\n",optopt);
76             usage();
77         default:    /* should not reached */
78             usage();
79         }
80     }
81     /* ***********************************************************
82      * 
83      *           Options processing completed
84      *
85      *                Main code beginning
86      * 
87      * ***********************************************************/
88     /* There must be remaing parameters */
89     if (optind == argc) {
90         usage();
91     }
92     nchild = atoi(argv[optind]);
93     printf("Test for forking %d child\n", nchild);
94     /* loop to fork children */
95     for (i=0; i<nchild; i++) {
96         if ( (pid = fork()) < 0) { 
97             /* on error exit */ 
98             printf("Error on %d child creation, %s\n", i+1, strerror(errno));
99             exit(-1); 
100         }
101         if (pid == 0) {   /* child */
102             printf("Child %d successfully executing\n", ++i);
103             if (wait_child) sleep(wait_child);
104             printf("Child %d exiting\n", i);
105             exit(0);
106         } else {          /* parent */
107             printf("Spawned %d child, pid %d \n", i+1, pid);
108             if (wait_parent) sleep(wait_parent);
109             printf("Go to next child \n");
110         }
111     }
112     /* normal exit */
113     return 0;
114 }
115 /*
116  * routine to print usage info and exit
117  */
118 void usage(void) {
119     printf("Program forktest: fork a given number of child \n");
120     printf("Usage:\n");
121     printf("  forktest [-h] child to fork \n");
122     printf("  -h           print this help\n");
123     exit(1);
124 }