]> granicus.if.org Git - apache/blobdiff - STATUS
fix references
[apache] / STATUS
diff --git a/STATUS b/STATUS
index 2856232b482cb3bc8bdec7bca1cd718cae68d5a5..f857b56a7ab5dbf9fac18d864d84c0a60ffedb45 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.1 STATUS:                                              -*-text-*-
-Last modified at [$Date: 2003/08/31 16:14:38 $]
+Last modified at [$Date: 2004/01/04 15:08:00 $]
 
 Release [NOTE that only Alpha/Beta releases occur in 2.1 development]:
 
@@ -14,8 +14,12 @@ on related projects:
 
 Contributors looking for a mission:
 
-    * just do an egrep on "TODO" or "XXX" and see what's there
+    * Just do an egrep on "TODO" or "XXX" in the source.
 
+    * Review the "PatchAvailable" bugs in the bug database.
+      Append a comment saying "Reviewed and tested".
+
+    * Open bugs in the bug database.
 
 CURRENT RELEASE NOTES:
 
@@ -110,6 +114,9 @@ CURRENT VOTES:
 
 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
 
+    * Patches submitted to the bug database:
+      http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=Apache+httpd-2.0&keywords=PatchAvailable
+
     * Filter stacks and subrequests, redirects and fast redirects.
       There's at least one PR that suffers from the current unclean behaviour
       (which lets the server send garbage): PR 17629
@@ -276,39 +283,16 @@ RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
       lost.  This might be an APR issue with how it deals with
       the child_init hook (i.e. the fcntl lock needs to be resynced).
       More examination and analysis is required.
-        Status: This has also been reported on Cygwin.  
+        Status: This has also been reported on Cygwin.
                 FreeBSD 4.7 was reputed to have 'fixed' threads.  Not.
+                FreeBSD 5.2-RC is a confirmed fix w/either libkse or libthr.
+                [libc_r, still the default, does not serve any pages w/worker;
+                 so on FreeBSD 5.2, you must use libmap.conf (see man page).]
+                Work needs to be done to get APR to try to be knowledgable that
+                libkse/libthr are acceptable.  Still not recommended for the
+                default since libc_r is still broken.
         Message-ID: <3C2CC514.8EF3BED1@wapme-systems.de> (cygnus)
 
-      Aaron says: I spent some time disecting this and have come to
-              the conclusion that it is not a problem in the worker MPM
-              (or at least, it is not isolated to a problem in worker).
-              I'll list some of the problems I'm seeing in case someone
-              else wants to pick up where I've left off:
-               - Delivery of just about any signal to one of the child
-                 processes will send it into an infinite loop as well.
-               - Even though the parent is spinning out of control,
-                 at first the child or children will appear to work
-                 properly. At times it is possible to get it into a state,
-                 however, where a request will hang until another concurrent
-                 request "kicks" the first, at which point the second will
-                 hang. My theory is that this has to do with the
-                 pthread_cond_*() implementation in FreeBSD, but it's still
-                 possible that it is in APR.
-      
-      Justin adds: Oh, FreeBSD threads are implemented entirely with 
-                   select()/poll()/longjmp().  Welcome to the nightmare.
-                   So, that means a ktrace output also has the thread 
-                   scheduling internals in it (since it is all the same to 
-                   the kernel).  Which makes it hard to distinguish between 
-                   our select() calls and their select() calls.  
-                   *bangs head on wall repeatedly*  But, some of the libc_r 
-                   files have a DBG_MSG #define.  This is moderately helpful
-                   when used with -DNO_DETACH.  The kernel scheduler isn't 
-                   waking up the threads on a select().  Yum.  And, I bet 
-                   those decrementing select calls have to do with the 
-                   scheduler.  Time to brush up on our OS fundamentals.
-
     * There is increasing demand from module writers for an API
       that will allow them to control the server à la apachectl.
       Reasons include sole-function servers that need to die if