]> granicus.if.org Git - apache/commitdiff
The worker's fdqueue is now a queue again.
authorAaron Bannert <aaron@apache.org>
Fri, 26 Apr 2002 17:17:42 +0000 (17:17 +0000)
committerAaron Bannert <aaron@apache.org>
Fri, 26 Apr 2002 17:17:42 +0000 (17:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94814 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS

diff --git a/CHANGES b/CHANGES
index b81f1de4c679ac13cce8e96eddf413cdbcbf34b2..950226d77f7d38c5792a696c4aa9e2f2e30c90f4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.37
 
+  *) Convert the worker MPM's fdqueue from a LIFO back into a FIFO.
+     [Aaron Bannert]
+
   *) Get basic HTTP proxy working on EBCDIC machines.  [Jeff Trawick]
 
   *) Allow mod_unique_id to work on systems with no IPv4 address
diff --git a/STATUS b/STATUS
index 47cdfc3e728693bada839b6afc23f2eb866e2b5d..a6ce2f9ff635b88b908ca33acb43b05bf00a1bc6 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                              -*-text-*-
-Last modified at [$Date: 2002/04/26 05:12:29 $]
+Last modified at [$Date: 2002/04/26 17:17:42 $]
 
 Release:
 
@@ -82,9 +82,6 @@ CURRENT VOTES:
 
 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
 
-    * The worker MPM's fdqueue needs to be turned back into a FIFO.
-      Status: Aaron volunteers.
-
     * The worker MPM needs to be able to gracelessly kill off its
       children. The current proposal would have the worker keep
       track of all currently accepted socket descriptors, and to
@@ -95,8 +92,8 @@ RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
     * The worker MPM should not accept more connections than it
       currently has available workers. Instead, the listener thread
       should block on a condition of the fdqueue such that it waits
-      until there are at least one idle worker before continuing
-      into the accept-loop.
+      until there is at least one idle worker before continuing
+      into its accept-loop.
 
     * Incorrect Content-Range headers or invalid 416 HTTP responses
       if a filter such as INCLUDES changes the content length.  It may