From 39a43c994edfe11243f4565690fba52e854a24d9 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 31 Mar 2004 17:01:01 +0000 Subject: [PATCH] Fixed bug #27802 (default number of children to 8 when PHP_FCGI_CHILDREN is not defined). --- sapi/cgi/cgi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 3fb22503812..760101d9694 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