Lines Matching refs:WAIT_STATUS_INT
313 #define WAIT_STATUS_INT(s) (s.w_status) macro
317 #define WAIT_STATUS_INT(s) (s) macro
6217 WAIT_STATUS_INT(status) = 0; in posix_wait3()
6226 return wait_helper(pid, WAIT_STATUS_INT(status), &ru); in posix_wait3()
6242 WAIT_STATUS_INT(status) = 0; in posix_wait4()
6251 return wait_helper(pid, WAIT_STATUS_INT(status), &ru); in posix_wait4()
6266 WAIT_STATUS_INT(status) = 0; in posix_waitpid()
6276 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); in posix_waitpid()
6315 WAIT_STATUS_INT(status) = 0; in posix_wait()
6323 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); in posix_wait()
7328 WAIT_STATUS_INT(status) = 0; in posix_WCOREDUMP()
7330 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status))) in posix_WCOREDUMP()
7347 WAIT_STATUS_INT(status) = 0; in posix_WIFCONTINUED()
7349 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status))) in posix_WIFCONTINUED()
7365 WAIT_STATUS_INT(status) = 0; in posix_WIFSTOPPED()
7367 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status))) in posix_WIFSTOPPED()
7383 WAIT_STATUS_INT(status) = 0; in posix_WIFSIGNALED()
7385 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status))) in posix_WIFSIGNALED()
7402 WAIT_STATUS_INT(status) = 0; in posix_WIFEXITED()
7404 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status))) in posix_WIFEXITED()
7420 WAIT_STATUS_INT(status) = 0; in posix_WEXITSTATUS()
7422 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status))) in posix_WEXITSTATUS()
7439 WAIT_STATUS_INT(status) = 0; in posix_WTERMSIG()
7441 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status))) in posix_WTERMSIG()
7458 WAIT_STATUS_INT(status) = 0; in posix_WSTOPSIG()
7460 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status))) in posix_WSTOPSIG()