comparison src/event/modules/ngx_win32_select_module.c @ 518:86dad910eeb6 NGINX_0_8_11

nginx 0.8.11 *) Change: directive "gzip_disable msie6" enables gzipping for MSIE 6.0 SV1. *) Feature: file AIO support on FreeBSD and Linux. *) Feature: the "directio_alignment" directive.
author Igor Sysoev <http://sysoev.ru>
date Fri, 28 Aug 2009 00:00:00 +0400
parents 829f9a66a659
children 43e02819c5cf
comparison
equal deleted inserted replaced
517:15b5cddc5190 518:86dad910eeb6
264 ngx_msleep(timer); 264 ngx_msleep(timer);
265 265
266 ready = 0; 266 ready = 0;
267 } 267 }
268 268
269 if (ready == -1) { 269 err = (ready == -1) ? ngx_socket_errno : 0;
270 err = ngx_socket_errno;
271 } else {
272 err = 0;
273 }
274 270
275 if (flags & NGX_UPDATE_TIME) { 271 if (flags & NGX_UPDATE_TIME) {
276 ngx_time_update(0, 0); 272 ngx_time_update(0, 0);
277 } 273 }
278 274