comparison src/event/modules/ngx_select_module.c @ 6112:8c79c506ea20

Removed NGX_OLD_THREADS from select and poll modules. These modules can't be compiled on win32.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 26 Mar 2015 14:20:07 +0300
parents 4652f8f26b12
children a72886067bbb
comparison
equal deleted inserted replaced
6111:537259db5af4 6112:8c79c506ea20
417 "the maximum number of files " 417 "the maximum number of files "
418 "supported by select() is %ud", FD_SETSIZE); 418 "supported by select() is %ud", FD_SETSIZE);
419 return NGX_CONF_ERROR; 419 return NGX_CONF_ERROR;
420 } 420 }
421 421
422 #if (NGX_OLD_THREADS)
423
424 ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
425 "select() is not supported in the threaded mode");
426 return NGX_CONF_ERROR;
427
428 #else
429
430 return NGX_CONF_OK; 422 return NGX_CONF_OK;
431 423 }
432 #endif
433 }