comparison auto/options @ 6018:466bd63b63d1

Thread pools implementation.
author Valentin Bartenev <vbart@nginx.com>
date Sat, 14 Mar 2015 17:37:07 +0300
parents 83d54192e97b
children 79ddb0bdb273
comparison
equal deleted inserted replaced
6017:83d54192e97b 6018:466bd63b63d1
188 --without-select_module) EVENT_SELECT=NONE ;; 188 --without-select_module) EVENT_SELECT=NONE ;;
189 --with-poll_module) EVENT_POLL=YES ;; 189 --with-poll_module) EVENT_POLL=YES ;;
190 --without-poll_module) EVENT_POLL=NONE ;; 190 --without-poll_module) EVENT_POLL=NONE ;;
191 --with-aio_module) EVENT_AIO=YES ;; 191 --with-aio_module) EVENT_AIO=YES ;;
192 192
193 --with-threads) USE_THREADS=YES ;;
194
193 --with-file-aio) NGX_FILE_AIO=YES ;; 195 --with-file-aio) NGX_FILE_AIO=YES ;;
194 --with-ipv6) NGX_IPV6=YES ;; 196 --with-ipv6) NGX_IPV6=YES ;;
195 197
196 --without-http) HTTP=NO ;; 198 --without-http) HTTP=NO ;;
197 --without-http-cache) HTTP_CACHE=NO ;; 199 --without-http-cache) HTTP_CACHE=NO ;;
349 --with-select_module enable select module 351 --with-select_module enable select module
350 --without-select_module disable select module 352 --without-select_module disable select module
351 --with-poll_module enable poll module 353 --with-poll_module enable poll module
352 --without-poll_module disable poll module 354 --without-poll_module disable poll module
353 355
356 --with-threads enable thread pool support
357
354 --with-file-aio enable file AIO support 358 --with-file-aio enable file AIO support
355 --with-ipv6 enable IPv6 support 359 --with-ipv6 enable IPv6 support
356 360
357 --with-http_ssl_module enable ngx_http_ssl_module 361 --with-http_ssl_module enable ngx_http_ssl_module
358 --with-http_spdy_module enable ngx_http_spdy_module 362 --with-http_spdy_module enable ngx_http_spdy_module