iliaa           Wed Mar 31 12:01:45 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    NEWS 
    /php-src/sapi/cgi   cgi_main.c 
  Log:
  MFH: Fixed bug #27802 (default number of children to 8 when 
  PHP_FCGI_CHILDREN is not defined).
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.618&r2=1.1247.2.619&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.618 php-src/NEWS:1.1247.2.619
--- php-src/NEWS:1.1247.2.618   Tue Mar 30 14:09:09 2004
+++ php-src/NEWS        Wed Mar 31 12:01:44 2004
@@ -2,6 +2,8 @@
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 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)
http://cvs.php.net/diff.php/php-src/sapi/cgi/cgi_main.c?r1=1.190.2.59&r2=1.190.2.60&ty=u
Index: php-src/sapi/cgi/cgi_main.c
diff -u php-src/sapi/cgi/cgi_main.c:1.190.2.59 php-src/sapi/cgi/cgi_main.c:1.190.2.60
--- php-src/sapi/cgi/cgi_main.c:1.190.2.59      Fri Mar 12 09:07:14 2004
+++ php-src/sapi/cgi/cgi_main.c Wed Mar 31 12:01:45 2004
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: cgi_main.c,v 1.190.2.59 2004/03/12 14:07:14 iliaa Exp $ */
+/* $Id: cgi_main.c,v 1.190.2.60 2004/03/31 17:01:45 iliaa Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -98,7 +98,7 @@
 /**
  * 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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to