comparison src/http/ngx_http_busy_lock.h @ 173:4fb2a2cff023

nginx-0.0.1-2003-11-04-20:09:19 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 04 Nov 2003 17:09:19 +0000
parents
children ea464a6c0581
comparison
equal deleted inserted replaced
172:caa57ddf6d77 173:4fb2a2cff023
1 #ifndef _NGX_HTTP_BUSY_LOCK_H_INCLUDED_
2 #define _NGX_HTTP_BUSY_LOCK_H_INCLUDED_
3
4
5 #include <ngx_config.h>
6 #include <ngx_core.h>
7 #include <ngx_http.h>
8
9
10 typedef struct {
11 char *busy;
12 int busy_n;
13
14 int waiting_n;
15 int max_waiting;
16
17 int conn_n;
18 int max_conn;
19
20 int timeout;
21
22 /* ngx_mutex_t mutex; */
23
24 } ngx_http_busy_lock_t;
25
26
27 #endif /* _NGX_HTTP_BUSY_LOCK_H_INCLUDED_ */