annotate src/core/ngx_shmtx.h @ 648:f200748c0ac8 NGINX_1_1_8

nginx 1.1.8 *) Change: the ngx_http_limit_zone_module was renamed to the ngx_http_limit_conn_module. *) Change: the "limit_zone" directive was superseded by the "limit_conn_zone" directive with a new syntax. *) Feature: support for multiple "limit_conn" limits on the same level. *) Feature: the "image_filter_sharpen" directive. *) Bugfix: a segmentation fault might occur in a worker process if resolver got a big DNS response. Thanks to Ben Hawkes. *) Bugfix: in cache key calculation if internal MD5 implementation was used; the bug had appeared in 1.0.4. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request header lines might be passed to backend while caching; or not passed without caching if caching was enabled in another part of the configuration. *) Bugfix: the module ngx_http_mp4_module sent incorrect "Content-Length" response header line if the "start" argument was used. Thanks to Piotr Sikora.
author Igor Sysoev <http://sysoev.ru>
date Mon, 14 Nov 2011 00:00:00 +0400
parents d4da38525468
children 4d05413aebad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
160
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
1
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
2 /*
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
3 * Copyright (C) Igor Sysoev
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
4 */
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
5
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7 #ifndef _NGX_SHMTX_H_INCLUDED_
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
8 #define _NGX_SHMTX_H_INCLUDED_
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
9
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
10
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
11 #include <ngx_config.h>
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
12 #include <ngx_core.h>
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
13
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
14
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
15 typedef struct {
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
16 #if (NGX_HAVE_ATOMIC_OPS)
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
17 ngx_atomic_t *lock;
624
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
18 #if (NGX_HAVE_POSIX_SEM)
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
19 ngx_uint_t semaphore;
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
20 sem_t sem;
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
21 #endif
160
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
22 #else
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
23 ngx_fd_t fd;
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
24 u_char *name;
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
25 #endif
624
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
26 ngx_uint_t spin;
160
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
27 } ngx_shmtx_t;
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
28
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
29
258
6ae1357b7b7c nginx 0.4.14
Igor Sysoev <http://sysoev.ru>
parents: 160
diff changeset
30 ngx_int_t ngx_shmtx_create(ngx_shmtx_t *mtx, void *addr, u_char *name);
160
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
31 void ngx_shmtx_destory(ngx_shmtx_t *mtx);
624
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
32 ngx_uint_t ngx_shmtx_trylock(ngx_shmtx_t *mtx);
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
33 void ngx_shmtx_lock(ngx_shmtx_t *mtx);
d4da38525468 nginx 1.0.2
Igor Sysoev <http://sysoev.ru>
parents: 460
diff changeset
34 void ngx_shmtx_unlock(ngx_shmtx_t *mtx);
160
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
35
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
36
73e8476f9142 nginx 0.3.27
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
37 #endif /* _NGX_SHMTX_H_INCLUDED_ */