]> granicus.if.org Git - apache/commitdiff
Remove calls to apr_proc_probe_writable_fds(). The function is going away.
authorBill Stoddard <stoddard@apache.org>
Wed, 16 May 2001 20:51:38 +0000 (20:51 +0000)
committerBill Stoddard <stoddard@apache.org>
Wed, 16 May 2001 20:51:38 +0000 (20:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89131 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/spmt_os2/spmt_os2.c
server/mpm_common.c

index 308e5fb806226824d038e805dcf24f7f6d9c5a15..e2d541dba2379fa46631838226ac5ed88fc8e87e 100644 (file)
@@ -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;
index d024c2497886b2d7bb1ff565512d89c978b314b7..edf28680d99eb390428b67c6b51055b68547a586 100644 (file)
@@ -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)) {