comparison src/http/ngx_http_busy_lock.c @ 257:70e1c7d2b83d

nginx-0.0.2-2004-02-11-20:08:49 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Feb 2004 17:08:49 +0000
parents 8dee38ea9117
children d4e65d74db9f
comparison
equal deleted inserted replaced
256:8e39cab6abd5 257:70e1c7d2b83d
57 { 57 {
58 int rc; 58 int rc;
59 59
60 rc = ngx_http_busy_lock_look_cachable(bl, bc, lock); 60 rc = ngx_http_busy_lock_look_cachable(bl, bc, lock);
61 61
62 ngx_log_debug(bc->event->log, "BUSYLOCK: %d %d:%d" _ 62 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, bc->event->log, 0,
63 rc _ bl->waiting _ bl->max_waiting); 63 "http busylock: %d w:%d mw::%d",
64 rc, bl->waiting, bl->max_waiting);
64 65
65 if (rc == NGX_OK) { /* no the same request, there's free slot */ 66 if (rc == NGX_OK) { /* no the same request, there's free slot */
66 return NGX_OK; 67 return NGX_OK;
67 } 68 }
68 69