Searched refs:pids (Results 1 - 1 of 1) sorted by relevance

/libmicro/
H A Dlibmicro.c116 static pid_t *pids = NULL; variable
324 pids = (pid_t *)malloc(lm_optP * sizeof (pid_t));
325 if (pids == NULL) {
326 perror("malloc(pids)");
379 pids[i] = fork();
381 switch (pids[i]) {
398 if (pids[i] > 0) {
399 (void) waitpid(pids[i], NULL, 0);

Completed in 24 milliseconds