Lines Matching refs:status
57 int status;
68 waitpid(pid, &status, WUNTRACED);
69 TEST(WIFEXITED(status) == 0);
70 TEST(WIFSTOPPED(status) == 1);
71 TEST(WSTOPSIG(status) == SIGSTOP);
148 int status;
158 waitpid(pid, &status, WUNTRACED);
159 TEST(WIFEXITED(status) == 0);
160 TEST(WIFSTOPPED(status) == 1);
161 TEST(WSTOPSIG(status) == SIGSTOP);