comparison src/core/ngx_cycle.c @ 56:3050baa54a26 NGINX_0_1_28

nginx 0.1.28 *) Bugfix: nginx hogs CPU while proxying the huge files. *) Bugfix: nginx could not be built by gcc 4.0 on Linux.
author Igor Sysoev <http://sysoev.ru>
date Fri, 08 Apr 2005 00:00:00 +0400
parents 72eb30262aac
children b55cbf18157e
comparison
equal deleted inserted replaced
55:729de7d75018 56:3050baa54a26
52 ngx_core_conf_t *ccf; 52 ngx_core_conf_t *ccf;
53 ngx_core_module_t *module; 53 ngx_core_module_t *module;
54 54
55 log = old_cycle->log; 55 log = old_cycle->log;
56 56
57 pool = ngx_create_pool(16 * 1024, log); 57 pool = ngx_create_pool(NGX_CYCLE_POOL_SIZE, log);
58 if (pool == NULL) { 58 if (pool == NULL) {
59 return NULL; 59 return NULL;
60 } 60 }
61 pool->log = log; 61 pool->log = log;
62 62