Commit a4f8dc9d authored by Mladen Turk's avatar Mladen Turk
Browse files

Revert the patch. Although the problem still exists

its root cause is inside the wait_for_many_objects.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@428009 13f79535-47bb-0310-9956-ffa450edef68
parent 2a45e536
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1120,9 +1120,6 @@ void child_main(apr_pool_t *pconf)
    while (threads_created) {
        rv = wait_for_many_objects(threads_created, child_handles, (DWORD)(end_time - time(NULL)));
        if (rv != WAIT_TIMEOUT) {
            if (rv >= WAIT_ABANDONED_0)
                rv = rv - WAIT_ABANDONED_0;
            else        
            rv = rv - WAIT_OBJECT_0;
            ap_assert((rv >= 0) && (rv < threads_created));
            cleanup_thread(child_handles, &threads_created, rv);