Lines Matching refs:status
209 int status;
214 status = kill(badboy_pid, SIGKILL);
215 if (status < 0) {
223 int status, pid;
225 status = fork();
226 badboy_pid = status;
227 if (status == 0) { /* badboy */
234 } else if (status < 0)
245 pid = wait(&status);
250 printf("pid %d exited with status %d\n", pid,
251 status);
252 record_status(status);
258 /* *************** status recording ************************* */
279 printf("exit status ... number of cases\n");