comparison src/core/nginx.c @ 4223:1b779cb69dc8

malloc() debugging on MacOSX.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 24 Oct 2011 15:46:48 +0000
parents 2dd6c7cb211a
children f72496073689
comparison
equal deleted inserted replaced
4222:2dd6c7cb211a 4223:1b779cb69dc8
201 ngx_int_t i; 201 ngx_int_t i;
202 ngx_log_t *log; 202 ngx_log_t *log;
203 ngx_cycle_t *cycle, init_cycle; 203 ngx_cycle_t *cycle, init_cycle;
204 ngx_core_conf_t *ccf; 204 ngx_core_conf_t *ccf;
205 205
206 #if (NGX_FREEBSD)
207 ngx_debug_init(); 206 ngx_debug_init();
208 #endif
209 207
210 if (ngx_strerror_init() != NGX_OK) { 208 if (ngx_strerror_init() != NGX_OK) {
211 return 1; 209 return 1;
212 } 210 }
213 211