Lines Matching refs:status
122 # define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG) argument
128 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0) argument
450 WAIT_T status; in reap_children() local
548 vmsWaitForChildren (&status); in reap_children()
553 pid = WAIT_NOHANG (&status); in reap_children()
556 pid = wait (&status); in reap_children()
570 exit_code = WEXITSTATUS (status); in reap_children()
571 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
572 coredump = WCOREDUMP (status); in reap_children()
602 status = dos_status; in reap_children()
603 exit_code = WEXITSTATUS (status); in reap_children()
606 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
612 status = amiga_status; in reap_children()