]> granicus.if.org Git - apache/commitdiff
Add an extra parameter to all apr_proc_wait() calls for the new "exitcode"
authorGreg Stein <gstein@apache.org>
Thu, 20 Sep 2001 09:03:24 +0000 (09:03 +0000)
committerGreg Stein <gstein@apache.org>
Thu, 20 Sep 2001 09:03:24 +0000 (09:03 +0000)
parameter. Pass NULL because we aren't interested in the value.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91093 13f79535-47bb-0310-9956-ffa450edef68

server/mpm_common.c

index 61fc296c28695ca416872c5b38a7865e982bce5d..d1c5c8ed359977947c06b93c8a455a0df39f6f04 100644 (file)
@@ -124,7 +124,7 @@ void ap_reclaim_child_processes(int terminate)
                 continue;
 
             proc.pid = pid;
-            waitret = apr_proc_wait(&proc, APR_NOWAIT);
+            waitret = apr_proc_wait(&proc, NULL, APR_NOWAIT);
             if (waitret != APR_CHILD_NOTDONE) {
                 MPM_NOTE_CHILD_KILLED(i);
                 continue;