From 42ec41c2a7b5d1086e2eafff21930f3d18ac41ed Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 19 May 2000 02:37:17 +0000 Subject: [PATCH] ap_wait_or_timeout() can't be static since it is called from dexter.c, prefork.c, and mpmt_pthread.c. (Yes, we still need a function prototype somewhere, but at least we can link properly now.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85252 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 a9663c3d91..19b86878ed 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -173,7 +173,7 @@ void ap_reclaim_child_processes(int terminate) #endif static int wait_or_timeout_counter; -static ap_proc_t *ap_wait_or_timeout(ap_wait_t *status, ap_pool_t *p) +ap_proc_t *ap_wait_or_timeout(ap_wait_t *status, ap_pool_t *p) { struct timeval tv; ap_status_t rv; -- 2.50.1