changeset 330:377a955421dc

nginx-0.0.3-2004-04-29-20:34:26 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 29 Apr 2004 16:34:26 +0000
parents 9a0ffa21f193
children f168a88e93f7
files src/event/ngx_event.c
diffstat 1 files changed, 2 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/event/ngx_event.c
+++ b/src/event/ngx_event.c
@@ -190,10 +190,7 @@ static ngx_int_t ngx_event_module_init(n
         return NGX_ERROR;
     }
 
-    if (ecf->accept_mutex) {
-        ngx_accept_mutex_ptr = (ngx_atomic_t *) shared;
-    }
-
+    ngx_accept_mutex_ptr = (ngx_atomic_t *) shared;
     ngx_connection_counter = (ngx_atomic_t *) (shared + 128);
 
     ngx_log_debug2(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
@@ -220,11 +217,10 @@ static ngx_int_t ngx_event_process_init(
     ngx_iocp_conf_t     *iocpcf;
 #endif
 
-
     ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);
     ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module);
 
-    if (ccf->worker_processes > 1 && ngx_accept_mutex_ptr) {
+    if (ccf->worker_processes > 1 && ecf->accept_mutex) {
         ngx_accept_mutex = ngx_accept_mutex_ptr;
         ngx_accept_mutex_held = 1;
         ngx_accept_mutex_delay = ecf->accept_mutex_delay;