]> granicus.if.org Git - php/commitdiff
MFH: Fixed bug #27802 (default number of children to 8 when
authorIlia Alshanetsky <iliaa@php.net>
Wed, 31 Mar 2004 17:01:45 +0000 (17:01 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Wed, 31 Mar 2004 17:01:45 +0000 (17:01 +0000)
PHP_FCGI_CHILDREN is not defined).

NEWS
sapi/cgi/cgi_main.c

diff --git a/NEWS b/NEWS
index 20b1d42279d800ebf00a55b143ce5a1d09fbca03..05d75b1a502dbf3237a2a639455a4b5e818f7e8b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@ PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2004, Version 4.3.6
 - Synchronized bundled GD library with GD 2.0.22. (Ilia)
+- Fixed bug #27802 (default number of children to 8 when PHP_FCGI_CHILDREN is
+  not defined). (Ilia)
 - Fixed bug #27782 (Wrong behaviour of next(), prev() and each()). (Ilia)
 - Fixed bug #27764 (Get return value from a stored procedure not returning any
   result sets). (Frank)
index d929c83f4390dd7409702aaa847ef8485d071d38..5b1315b90e22b97bda3fc22f9a188f0469ae48ef 100644 (file)
@@ -98,7 +98,7 @@ static void (*php_php_import_environment_variables)(zval *array_ptr TSRMLS_DC);
 /**
  * Number of child processes that will get created to service requests
  */
-static int children = 0;
+static int children = 8;
 
 /**
  * Set to non-zero if we are the parent process