summaryrefslogtreecommitdiffhomepage
path: root/src/event/modules/ngx_win32_select_module.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2015-03-20Removed unix ngx_threaded and related ngx_process_changes.Ruslan Ermilov1-1/+0
2015-03-14Thread pools implementation.Valentin Bartenev1-0/+1
2014-09-01Events: processing of posted events changed from LIFO to FIFO.Valentin Bartenev1-1/+2
In theory, this can provide a bit better distribution of latencies. Also it simplifies the code, since ngx_queue_t is now used instead of custom implementation.
2014-09-01Events: removed broken thread support from posted events.Valentin Bartenev1-7/+4
It's mostly dead code. And the idea of thread support for this task has been deprecated.
2013-09-04Win32: MinGW GCC compatibility.Maxim Dounin1-2/+2
Several warnings silenced, notably (ngx_socket_t) -1 is now checked on socket operations instead of -1, as ngx_socket_t is unsigned on win32 and gcc complains on comparison. With this patch, it's now possible to compile nginx using mingw gcc, with options we normally compile on win32.
2012-01-18Copyright updated.Maxim Konovalov1-0/+1
2010-03-25*) introduce ngx_time_sigsafe_update() to update the error log time onlyIgor Sysoev1-1/+1
*) change ngx_time_update() interface
2010-03-13*) use previously cached GMT offset value to update time from a signal handlerIgor Sysoev1-1/+1
*) change ngx_time_update() interface since there are no notification methods those return time
2009-11-23add NGX_PROCESS_HELPER process statusIgor Sysoev1-1/+1
2009-08-25style fixIgor Sysoev1-5/+1
2009-05-06divide select module into two modules: Unix and Win32 onesIgor Sysoev1-0/+403