comparison src/core/ngx_palloc.h @ 56:3050baa54a26 NGINX_0_1_28

nginx 0.1.28 *) Bugfix: nginx hogs CPU while proxying the huge files. *) Bugfix: nginx could not be built by gcc 4.0 on Linux.
author Igor Sysoev <http://sysoev.ru>
date Fri, 08 Apr 2005 00:00:00 +0400
parents 72eb30262aac
children b55cbf18157e
comparison
equal deleted inserted replaced
55:729de7d75018 56:3050baa54a26
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