Home | History | Annotate | Download | only in lib

Lines Matching refs:Forker_npids

78  *	Forker_pids[] and Forker_npids.  The Forker_pids array will
80 * Forker_npids variable contains the number of entries
118 int Forker_npids = 0; /* number of entries in Forker_pids */
179 Forker_npids++;
184 if (Forker_npids < FORKER_MAX_PIDS)
185 Forker_pids[Forker_npids - 1] =
190 if (Forker_npids < FORKER_MAX_PIDS)
191 Forker_pids[Forker_npids - 1] = pid;
206 Forker_npids++;
210 if (Forker_npids < FORKER_MAX_PIDS)
211 Forker_pids[Forker_npids - 1] =
216 if (Forker_npids < FORKER_MAX_PIDS)
217 Forker_pids[Forker_npids - 1] = pid;
224 if (Forker_npids < FORKER_MAX_PIDS)
225 Forker_pids[Forker_npids] = 0;
271 printf("%d My version of Forker_pids[], Forker_npids = %d\n",
272 getpid(), Forker_npids);
274 for (ind = 0; ind < Forker_npids; ind++) {