diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-11-20 08:51:45 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-11-20 08:51:45 +0000 |
commit | 67cd336d88f8a920ea5921936785a1c1553062fb (patch) | |
tree | f76934379e98e22854638a4ddc44b022deefd265 /src/os/unix/ngx_alloc.c | |
parent | cae66582d5e6137d3b53552fcb84520a042841ca (diff) | |
download | nginx-67cd336d88f8a920ea5921936785a1c1553062fb.tar.gz nginx-67cd336d88f8a920ea5921936785a1c1553062fb.zip |
slab allocator in shared memory
Diffstat (limited to 'src/os/unix/ngx_alloc.c')
-rw-r--r-- | src/os/unix/ngx_alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/unix/ngx_alloc.c b/src/os/unix/ngx_alloc.c index 25606e2f6..c38d7d27e 100644 --- a/src/os/unix/ngx_alloc.c +++ b/src/os/unix/ngx_alloc.c @@ -8,7 +8,8 @@ #include <ngx_core.h> -int ngx_pagesize; +ngx_uint_t ngx_pagesize; +ngx_uint_t ngx_pagesize_shift; ngx_uint_t ngx_cacheline_size; |