comparison src/core/ngx_cycle.h @ 2785:d478379e51ac

*) refactor error_log processing: listen socket log might inherit built-in error_log with zero level, and r2447, r2466, r2467 were not enough *) remove bogus "stderr" level *) some functions and fields renames
author Igor Sysoev <igor@sysoev.ru>
date Thu, 30 Apr 2009 13:53:42 +0000
parents 77264e0157ad
children ffbdaa3c70d6
comparison
equal deleted inserted replaced
2784:c2230102df6f 2785:d478379e51ac
36 struct ngx_cycle_s { 36 struct ngx_cycle_s {
37 void ****conf_ctx; 37 void ****conf_ctx;
38 ngx_pool_t *pool; 38 ngx_pool_t *pool;
39 39
40 ngx_log_t *log; 40 ngx_log_t *log;
41 ngx_log_t *new_log; 41 ngx_log_t new_log;
42 42
43 ngx_connection_t **files; 43 ngx_connection_t **files;
44 ngx_connection_t *free_connections; 44 ngx_connection_t *free_connections;
45 ngx_uint_t free_connection_n; 45 ngx_uint_t free_connection_n;
46 46