Lines Matching full:will
58 * The background function will do a fork of the current process.
59 * The parent process will then exit, thus orphaning the
60 * child process. Doing this will not nice the child process
63 * to stderr and the process will exit with a value of errno.
65 * The forker function will fork <ncopies> minus one copies
67 * will be done. Mode 0 (default) will have all new processes
69 * the parent process will have one child and that child will
71 * The forker function will return the number of successful
72 * forks. This value will be different for the parent and each child.
73 * Using mode 0, the parent will get the total number of successful
74 * forks. Using mode 1, the newest child will get the total number
75 * of forks. The parent will get a return value of 1.
78 * Forker_pids[] and Forker_npids. The Forker_pids array will
81 * in Forker_pids. Note, not all processes will have
83 * parent process and the last process will have all information.
84 * If using mode 1, only the last child process will have all information.
87 * a error message will be printed to stderr. The error message
100 * rrl This functions will first written during
106 * 4098 pids will be stored in the array.
122 * This function will fork and the parent will exit zero and
123 * the child will return. This will orphan the returning process
128 * !0 : if fork failed, the return value will be the errno.
152 * Forker will fork ncopies-1 copies of self.
157 char *prefix) /* if ! NULL, an message will be printed to stderr */
158 /* if fork fails. The prefix (program name) will */