diff options
author | Ruslan Ermilov <ru@nginx.com> | 2015-04-14 19:01:25 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2015-04-14 19:01:25 +0300 |
commit | cf31347ee84fdaa02f768e641d1a2f1352b6a56a (patch) | |
tree | 95fa2e6267ffddd5d3ace7bf8108964e7c68fed8 /src/core/ngx_cycle.h | |
parent | b0b7b5a356c7dedf4a1867e94d8a36cbb6dc3da1 (diff) | |
download | nginx-cf31347ee84fdaa02f768e641d1a2f1352b6a56a.tar.gz nginx-cf31347ee84fdaa02f768e641d1a2f1352b6a56a.zip |
Upstream: the "zone" directive.
Upstreams with the "zone" directive are kept in shared memory,
with a consistent view of all worker processes.
Diffstat (limited to 'src/core/ngx_cycle.h')
-rw-r--r-- | src/core/ngx_cycle.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ngx_cycle.h b/src/core/ngx_cycle.h index be90a7281..28f1886cc 100644 --- a/src/core/ngx_cycle.h +++ b/src/core/ngx_cycle.h @@ -31,6 +31,7 @@ struct ngx_shm_zone_s { ngx_shm_t shm; ngx_shm_zone_init_pt init; void *tag; + ngx_uint_t noreuse; /* unsigned noreuse:1; */ }; |