Browse Source

Fixed bug #27802 (default number of children to 8 when PHP_FCGI_CHILDREN is

not defined).
PEAR_1_4DEV
Ilia Alshanetsky 23 years ago
parent
commit
39a43c994e
  1. 2
      sapi/cgi/cgi_main.c

2
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

Loading…
Cancel
Save