]> granicus.if.org Git - python/commitdiff
The helper is only necessary for wait3/4.
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 20 Mar 2006 07:25:26 +0000 (07:25 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 20 Mar 2006 07:25:26 +0000 (07:25 +0000)
Modules/posixmodule.c

index 1c2847973218e7345b35ba988c2efa56f6b88dfb..7142cacba04b6be608d1edee88506d7936037796 100644 (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__,