Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-11-21 18:23:26 +0400
committerRuslan Ermilov <ru@nginx.com>2012-11-21 18:23:26 +0400
commit9f385870f663ff48a511e07e63e85d28737c3384 (patch)
tree30be100f547135502f4ffa8ed853fa8c238c2a77 /src/core/ngx_shmtx.c
parent542b60a35a26b42fb24be70816d5502db7b6eaa0 (diff)
Fixed location of debug message in ngx_shmtx_lock().
Diffstat (limited to 'src/core/ngx_shmtx.c')
-rw-r--r--src/core/ngx_shmtx.c6
1 files changed, 3 insertions, 3 deletions
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;
}