]> granicus.if.org Git - apache/commitdiff
Now that apr_poll has been corrected and doesn't loose fd's between calls
authorDavid Reid <dreid@apache.org>
Fri, 30 Mar 2001 20:01:49 +0000 (20:01 +0000)
committerDavid Reid <dreid@apache.org>
Fri, 30 Mar 2001 20:01:49 +0000 (20:01 +0000)
this can be done once again.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88618 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/beos/beos.c

index 29df0cb9f0dde5a1053af997899b5b4809dd7eae..2ad631cc59b43a673d262444842ddaf0b44228a1 100644 (file)
@@ -350,14 +350,14 @@ static int32 worker_thread(void * dummy)
                                   (request_rec*)NULL);
                                   
     apr_poll_setup(&pollset, num_listening_sockets, tpool);
+    for(n=0 ; n <= num_listening_sockets ; n++)
+        apr_poll_socket_add(pollset, listening_sockets[n], APR_POLLIN);
 
     while (1) {
         /* If we're here, then chances are (unless we're the first thread created) we're going
            to be held up on the accept_muetx, so doing this here shouldn't be a peformance hit.
            If it is, you probably need more threads...
          */
-        for(n=0 ; n <= num_listening_sockets ; n++)
-               apr_poll_socket_add(pollset, listening_sockets[n], APR_POLLIN);
 
         this_worker_should_exit |= (ap_max_requests_per_child != 0) && (requests_this_child <= 0);