comparison src/event/ngx_event.c @ 37:9fe40e51d4a3

nginx-0.0.1-2002-12-23-21:22:18 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 23 Dec 2002 18:22:18 +0000
parents c14d7232b11f
children 2ffaa35fba42
comparison
equal deleted inserted replaced
36:c14d7232b11f 37:9fe40e51d4a3
33 ngx_event_type_e ngx_event_type = NGX_POLL_EVENT; 33 ngx_event_type_e ngx_event_type = NGX_POLL_EVENT;
34 #else 34 #else
35 ngx_event_type_e ngx_event_type = NGX_KQUEUE_EVENT; 35 ngx_event_type_e ngx_event_type = NGX_KQUEUE_EVENT;
36 #endif 36 #endif
37 37
38 #elif (HAVE_POLL)
39
40 #if 0
41 ngx_event_type_e ngx_event_type = NGX_SELECT_EVENT;
38 #else 42 #else
43 ngx_event_type_e ngx_event_type = NGX_POLL_EVENT;
44 #endif
45
46 #else
47
39 ngx_event_type_e ngx_event_type = NGX_SELECT_EVENT; 48 ngx_event_type_e ngx_event_type = NGX_SELECT_EVENT;
49
40 #endif 50 #endif
41 51
42 ngx_event_actions_t ngx_event_actions; 52 ngx_event_actions_t ngx_event_actions;
43 53
44 /* ngx_event_type_e order */ 54 /* ngx_event_type_e order */