comparison src/core/ngx_connection.h @ 3065:113cd532b328

aio sendfile
author Igor Sysoev <igor@sysoev.ru>
date Sun, 30 Aug 2009 09:52:39 +0000
parents 512d164a8348
children 00d436dbf826
comparison
equal deleted inserted replaced
3064:23e6f26fb4bd 3065:113cd532b328
157 157
158 #if (NGX_HAVE_IOCP) 158 #if (NGX_HAVE_IOCP)
159 unsigned accept_context_updated:1; 159 unsigned accept_context_updated:1;
160 #endif 160 #endif
161 161
162 #if (NGX_HAVE_AIO_SENDFILE)
163 unsigned aio_sendfile:1;
164 ngx_buf_t *busy_sendfile;
165 #endif
166
162 #if (NGX_THREADS) 167 #if (NGX_THREADS)
163 ngx_atomic_t lock; 168 ngx_atomic_t lock;
164 #endif 169 #endif
165 }; 170 };
166 171