comparison src/core/ngx_connection.h @ 520:d41628eb4d0a NGINX_0_8_12

nginx 0.8.12 *) Feature: the "sendfile" parameter in the "aio" directive on FreeBSD. *) Bugfix: in try_files; the bug had appeared in 0.8.11. *) Bugfix: in memcached; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Mon, 31 Aug 2009 00:00:00 +0400
parents f39b9e29530d
children c04fa65fe604
comparison
equal deleted inserted replaced
519:1fd1b769cd78 520:d41628eb4d0a
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