From: Ruslan Ermilov Date: Wed, 21 Nov 2012 14:23:26 +0000 (+0000) Subject: Fixed location of debug message in ngx_shmtx_lock(). X-Git-Tag: release-1.3.9~8 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=9f385870f663ff48a511e07e63e85d28737c3384;p=nginx.git Fixed location of debug message in ngx_shmtx_lock(). --- diff --git a/src/core/ngx_shmtx.c b/src/core/ngx_shmtx.c index 6cf7af58a..a62999f33 100644 --- a/src/core/ngx_shmtx.c +++ b/src/core/ngx_shmtx.c @@ -117,11 +117,11 @@ ngx_shmtx_lock(ngx_shmtx_t *mtx) "sem_wait() failed while waiting on shmtx"); break; } - - ngx_log_debug0(NGX_LOG_DEBUG_CORE, ngx_cycle->log, 0, - "shmtx awoke"); } + ngx_log_debug0(NGX_LOG_DEBUG_CORE, ngx_cycle->log, 0, + "shmtx awoke"); + continue; }