From 3f8e5404e938287fce5f2b374b33c1e1ff3c73fc Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Thu, 20 Sep 2001 09:03:24 +0000 Subject: [PATCH] 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 --- server/mpm_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm_common.c b/server/mpm_common.c index 61fc296c28..d1c5c8ed35 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; -- 2.50.1