comparison src/core/ngx_buf.h @ 516:7efcdb937752 NGINX_0_8_10

nginx 0.8.10 *) Bugfix: memory leaks if GeoIP City database was used. *) Bugfix: in copying temporary files to permanent storage area; the bug had appeared in 0.8.9.
author Igor Sysoev <http://sysoev.ru>
date Mon, 24 Aug 2009 00:00:00 +0400
parents fd759445d8a8
children 86dad910eeb6
comparison
equal deleted inserted replaced
515:607556aed0a1 516:7efcdb937752
73 ngx_buf_t *buf; 73 ngx_buf_t *buf;
74 ngx_chain_t *in; 74 ngx_chain_t *in;
75 ngx_chain_t *free; 75 ngx_chain_t *free;
76 ngx_chain_t *busy; 76 ngx_chain_t *busy;
77 77
78 unsigned sendfile; 78 unsigned sendfile:1;
79 unsigned directio; 79 unsigned directio:1;
80 #if (NGX_HAVE_ALIGNED_DIRECTIO) 80 #if (NGX_HAVE_ALIGNED_DIRECTIO)
81 unsigned unaligned; 81 unsigned unaligned:1;
82 #endif 82 #endif
83 unsigned need_in_memory; 83 unsigned need_in_memory:1;
84 unsigned need_in_temp; 84 unsigned need_in_temp:1;
85 85
86 ngx_pool_t *pool; 86 ngx_pool_t *pool;
87 ngx_int_t allocated; 87 ngx_int_t allocated;
88 ngx_bufs_t bufs; 88 ngx_bufs_t bufs;
89 ngx_buf_tag_t tag; 89 ngx_buf_tag_t tag;