Home | History | Annotate | Download | only in pidns

Lines Matching refs:status

61 	int children[10], exit_val, i, status;
100 if (waitpid(children[i], &status, 0) == -1) {
103 waitpid(children[i], &status, 0);
106 if (!(WIFSIGNALED(status) || WTERMSIG(status) == SIGUSR1)) {
108 * XXX (garrcoop): this status reporting is overly
117 WIFEXITED(status), WEXITSTATUS(status),
118 WIFSIGNALED(status), WTERMSIG(status));
136 int status;
150 if (wait(&status) == -1)
153 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
155 else if (WIFSIGNALED(status))
158 WTERMSIG(status));