nginx 1.1.11
[nginx.git] / src / http / ngx_http_busy_lock.h
blobd793e296641ed61d951fde8856410322853bc716
2 /*
3 * Copyright (C) Igor Sysoev
4 */
7 #ifndef _NGX_HTTP_BUSY_LOCK_H_INCLUDED_
8 #define _NGX_HTTP_BUSY_LOCK_H_INCLUDED_
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13 #include <ngx_event.h>
14 #include <ngx_http.h>
17 typedef struct {
18 u_char *md5_mask;
19 char *md5;
20 int cacheable;
22 int busy;
23 int max_busy;
25 int waiting;
26 int max_waiting;
28 time_t timeout;
30 ngx_event_mutex_t *mutex;
31 } ngx_http_busy_lock_t;
34 typedef struct {
35 time_t time;
36 ngx_event_t *event;
37 void (*event_handler)(ngx_event_t *ev);
38 u_char *md5;
39 int slot;
40 } ngx_http_busy_lock_ctx_t;
43 int ngx_http_busy_lock(ngx_http_busy_lock_t *bl, ngx_http_busy_lock_ctx_t *bc);
44 int ngx_http_busy_lock_cacheable(ngx_http_busy_lock_t *bl,
45 ngx_http_busy_lock_ctx_t *bc, int lock);
46 void ngx_http_busy_unlock(ngx_http_busy_lock_t *bl,
47 ngx_http_busy_lock_ctx_t *bc);
49 char *ngx_http_set_busy_lock_slot(ngx_conf_t *cf, ngx_command_t *cmd,
50 void *conf);
53 #endif /* _NGX_HTTP_BUSY_LOCK_H_INCLUDED_ */