comparison src/core/ngx_cycle.h @ 6111:537259db5af4

Removed "worker_threads" and "thread_stack_size" directives.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 26 Mar 2015 14:15:17 +0300
parents 16c51e80128c
children 967594ba7571
comparison
equal deleted inserted replaced
6110:16c51e80128c 6111:537259db5af4
101 ngx_str_t pid; 101 ngx_str_t pid;
102 ngx_str_t oldpid; 102 ngx_str_t oldpid;
103 103
104 ngx_array_t env; 104 ngx_array_t env;
105 char **environment; 105 char **environment;
106
107 #if (NGX_OLD_THREADS)
108 ngx_int_t worker_threads;
109 size_t thread_stack_size;
110 #endif
111
112 } ngx_core_conf_t; 106 } ngx_core_conf_t;
113 107
114 108
115 #define ngx_is_init_cycle(cycle) (cycle->conf_ctx == NULL) 109 #define ngx_is_init_cycle(cycle) (cycle->conf_ctx == NULL)
116 110