comparison src/core/ngx_palloc.h @ 507:cd3117ad9aab release-0.1.28

nginx-0.1.28-RELEASE import *) Bugfix: nginx hogs CPU while proxying the huge files. *) Bugfix: nginx could not be built by gcc 4.0 on Linux.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 08 Apr 2005 15:18:55 +0000
parents d4ea69372b94
children 9b8c906f6e63
comparison
equal deleted inserted replaced
506:005e65646622 507:cd3117ad9aab
31 31
32 32
33 struct ngx_pool_s { 33 struct ngx_pool_s {
34 u_char *last; 34 u_char *last;
35 u_char *end; 35 u_char *end;
36 ngx_chain_t *chain;
36 ngx_pool_t *next; 37 ngx_pool_t *next;
37 ngx_pool_large_t *large; 38 ngx_pool_large_t *large;
38 ngx_log_t *log; 39 ngx_log_t *log;
39 }; 40 };
40 41