Lines Matching defs:status
63 int children[10], exit_val, i, status;
102 if (waitpid(children[i], &status, 0) == -1) {
105 waitpid(children[i], &status, 0);
108 if (!(WIFSIGNALED(status) || WTERMSIG(status) == SIGUSR1)) {
110 * XXX (garrcoop): this status reporting is overly
119 WIFEXITED(status), WEXITSTATUS(status),
120 WIFSIGNALED(status), WTERMSIG(status));
138 int status;
152 if (wait(&status) == -1)
155 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
157 else if (WIFSIGNALED(status))
160 WTERMSIG(status));