comparison src/event/ngx_event.c @ 245:e6c005b66b3a

nginx-0.0.1-2004-01-30-00:45:01 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 29 Jan 2004 21:45:01 +0000
parents 1119faf4635a
children e885208c518b
comparison
equal deleted inserted replaced
244:187dc0a3197d 245:e6c005b66b3a
132 } 132 }
133 133
134 if (ngx_modules[m]->ctx_index == ecf->use) { 134 if (ngx_modules[m]->ctx_index == ecf->use) {
135 module = ngx_modules[m]->ctx; 135 module = ngx_modules[m]->ctx;
136 if (module->actions.init(cycle) == NGX_ERROR) { 136 if (module->actions.init(cycle) == NGX_ERROR) {
137 return NGX_ERROR; 137 /* fatal */
138 exit(2);
138 } 139 }
139 break; 140 break;
140 } 141 }
141 } 142 }
142 143