Lines Matching refs:status
128 int status, threads;
142 SAFE_WAITPID(-1, &status, 0);
144 if (WIFSIGNALED(status)) {
145 if (allow_sigkill && WTERMSIG(status) == SIGKILL) {
151 WTERMSIG(status),
152 tst_strsig(WTERMSIG(status)));
154 } else if (WIFEXITED(status)) {
155 if (WEXITSTATUS(status) == retcode) {
161 WEXITSTATUS(status), retcode);
420 int k, status;
424 SAFE_WAITPID(child[k], &status, WUNTRACED);
425 if (!WIFSTOPPED(status))
443 int i, j, status, *child;
531 while (waitpid(-1, &status, 0) > 0)
532 if (WEXITSTATUS(status) != 0)
533 tst_res(TFAIL, "child exit status is %d",
534 WEXITSTATUS(status));