Commit 1dc73129 authored by Greg Stein's avatar Greg Stein
Browse files

Add an extra parameter to all apr_proc_wait() calls for the new "exitcode"

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
parent cae711ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;