You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2008/05/29 22:55:17 UTC

svn commit: r661477 - /httpd/httpd/branches/2.2.x/STATUS

Author: jim
Date: Thu May 29 13:55:17 2008
New Revision: 661477

URL: http://svn.apache.org/viewvc?rev=661477&view=rev
Log:
3 prefork fixes... testing still in progress but so
far looks good, so note these so I don't forget :)

Modified:
    httpd/httpd/branches/2.2.x/STATUS

Modified: httpd/httpd/branches/2.2.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=661477&r1=661476&r2=661477&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/STATUS (original)
+++ httpd/httpd/branches/2.2.x/STATUS Thu May 29 13:55:17 2008
@@ -159,6 +159,28 @@
        Trunk version of patch works
     +1: rpluem,
 
+ * prefork: prefork's apr_pollset_poll() loop-on-EINTR loop was not checking
+  die_now; the child holding the mutex will not die immediately if poll
+  fails with EINTR, and will hence appear to "hang" until a new connection
+  is recevied.
+   Trunk version of patch:
+         http://svn.apache.org/viewvc?view=rev&revision=613260
+   Backport version for 2.2.x of patch:
+         Trunk version of patch works
+
+ * prefork: Unlock mutex before terminating.
+   Trunk version of patch:
+         http://svn.apache.org/viewvc?view=rev&revision=613252
+   Backport version for 2.2.x of patch:
+         Trunk version of patch works
+
+ * prefork: Stop processing new connections if shutdown_pending is set,
+   i.e. when SIGTERM is received in single-process mode.
+   PR 38848
+   Trunk version of patch:
+         http://svn.apache.org/viewvc?view=rev&revision=552029
+   Backport version for 2.2.x of patch:
+         Trunk version of patch works
 PATCHES/ISSUES THAT ARE STALLED
 
    * beos MPM: Create pmain pool and run modules' child_init hooks when