From: Greg Stein Date: Thu, 20 Sep 2001 09:03:24 +0000 (+0000) Subject: Add an extra parameter to all apr_proc_wait() calls for the new "exitcode" X-Git-Tag: 2.0.26~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f8e5404e938287fce5f2b374b33c1e1ff3c73fc;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 61fc296c286..d1c5c8ed359 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -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;