comparison src/core/ngx_palloc.c @ 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
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