From: Bill Stoddard Date: Wed, 16 May 2001 20:51:38 +0000 (+0000) Subject: Remove calls to apr_proc_probe_writable_fds(). The function is going away. X-Git-Tag: 2.0.18~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b1538c84d25b00f15728f2747d0bdf0d23005cc;p=apache Remove calls to apr_proc_probe_writable_fds(). The function is going away. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89131 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/spmt_os2/spmt_os2.c b/server/mpm/spmt_os2/spmt_os2.c index 308e5fb806..e2d541dba2 100644 --- a/server/mpm/spmt_os2/spmt_os2.c +++ b/server/mpm/spmt_os2/spmt_os2.c @@ -246,9 +246,6 @@ static int wait_or_timeout(apr_wait_t *status) ++wait_or_timeout_counter; if (wait_or_timeout_counter == INTERVAL_OF_WRITABLE_PROBES) { wait_or_timeout_counter = 0; -#if APR_HAS_OTHER_CHILD - apr_proc_probe_writable_fds(); -#endif } tid = 0; diff --git a/server/mpm_common.c b/server/mpm_common.c index d024c24978..edf28680d9 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -194,9 +194,6 @@ void ap_wait_or_timeout(apr_wait_t *status, apr_proc_t *ret, apr_pool_t *p) ++wait_or_timeout_counter; if (wait_or_timeout_counter == INTERVAL_OF_WRITABLE_PROBES) { wait_or_timeout_counter = 0; -#if APR_HAS_OTHER_CHILD - apr_proc_probe_writable_fds(); -#endif } rv = apr_proc_wait_all_procs(ret, status, APR_NOWAIT, p); if (APR_STATUS_IS_EINTR(rv)) {