Home | History | Annotate | Download | only in Modules

Lines Matching defs:WEXITSTATUS

299 #ifndef WEXITSTATUS
300 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
5132 result = WEXITSTATUS(exit_code);
7377 #ifdef WEXITSTATUS
7379 "WEXITSTATUS(status) -> integer\n\n\
7388 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
7391 return Py_BuildValue("i", WEXITSTATUS(status));
7393 #endif /* WEXITSTATUS */
9090 #ifdef WEXITSTATUS
9091 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
9092 #endif /* WEXITSTATUS */