Lines Matching defs:status
48 * and waits for the child to send status on whether it
57 int status, pfds[2];
64 * and returns non-zero exit status and the child is actually running.
90 if (read(pfds[0], &status, sizeof (status)) == sizeof (status))
91 exit(status);
93 if (waitpid(pid, &status, 0) == pid && WIFEXITED(status))
94 exit(WEXITSTATUS(status));
115 int status = 0;
118 (void) write(fd, &status, sizeof (status));