Lines Matching refs:status
47 def waitstatus_to_exitcode(status):
49 return os.waitstatus_to_exitcode(status)
51 # The child exited, but we don't understand its status.
53 # return that status; perhaps that helps debug it.
54 return status
963 _, status = os.waitpid(pid, 0)
969 "child process pid %d exit status already read: "
973 returncode = waitstatus_to_exitcode(status)
1084 pid, status = os.waitpid(expected_pid, os.WNOHANG)
1098 returncode = waitstatus_to_exitcode(status)
1182 pid, status = os.waitpid(-1, os.WNOHANG)
1191 returncode = waitstatus_to_exitcode(status)
1303 pid, status = os.waitpid(expected_pid, os.WNOHANG)
1318 returncode = waitstatus_to_exitcode(status)
1411 pid, status = os.waitpid(expected_pid, 0)
1421 returncode = waitstatus_to_exitcode(status)