The helper is only necessary for wait3/4.

This commit is contained in:
Neal Norwitz 2006-03-20 07:25:26 +00:00
parent 46fa48ab04
commit 6c2f913805
1 changed files with 2 additions and 0 deletions

View File

@ -5097,6 +5097,7 @@ posix_setgroups(PyObject *self, PyObject *args)
}
#endif /* HAVE_SETGROUPS */
#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
static PyObject *
wait_helper(int pid, int status, struct rusage *ru)
{
@ -5154,6 +5155,7 @@ wait_helper(int pid, int status, struct rusage *ru)
return Py_BuildValue("iiO", pid, status, result);
}
#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
#ifdef HAVE_WAIT3
PyDoc_STRVAR(posix_wait3__doc__,