From 04799a6f7c69c525969255a3bf5acaa4959552d4 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 17 Dec 2009 12:25:46 +0000 Subject: fix r3331: *) now pools are aligned to 16 bytes *) forbidden to set non-aligned pool sizes --- src/core/nginx.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/core/nginx.c') diff --git a/src/core/nginx.c b/src/core/nginx.c index 7387aa1ba..5df96a438 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -287,9 +287,6 @@ main(int argc, char *const *argv) init_cycle.log = log; ngx_cycle = &init_cycle; - /* dummy pagesize to create aligned pool */ - ngx_pagesize = 1024; - init_cycle.pool = ngx_create_pool(1024, log); if (init_cycle.pool == NULL) { return 1; -- cgit