comparison src/core/ngx_palloc.c @ 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
20 20
21 p->last = (u_char *) p + sizeof(ngx_pool_t); 21 p->last = (u_char *) p + sizeof(ngx_pool_t);
22 p->end = (u_char *) p + size; 22 p->end = (u_char *) p + size;
23 p->next = NULL; 23 p->next = NULL;
24 p->large = NULL; 24 p->large = NULL;
25 p->chain = NULL;
25 p->log = log; 26 p->log = log;
26 27
27 return p; 28 return p;
28 } 29 }
29 30