From ddbc35b39c6a642233d527b5208cb1a54a241063 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 31 Mar 2004 17:01:45 +0000 Subject: [PATCH] MFH: Fixed bug #27802 (default number of children to 8 when PHP_FCGI_CHILDREN is not defined). --- NEWS | 2 ++ sapi/cgi/cgi_main.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 20b1d42279..05d75b1a50 100644 --- 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) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index d929c83f43..5b1315b90e 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -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 -- 2.50.1