comparison src/core/ngx_modules.c @ 92:19cc647ecd91

nginx-0.0.1-2003-05-20-19:37:55 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 20 May 2003 15:37:55 +0000
parents 637625a2acdb
children 738fe44c70d5
comparison
equal deleted inserted replaced
91:637625a2acdb 92:19cc647ecd91
6 6
7 extern ngx_module_t ngx_events_module; 7 extern ngx_module_t ngx_events_module;
8 extern ngx_module_t ngx_event_module; 8 extern ngx_module_t ngx_event_module;
9 9
10 extern ngx_module_t ngx_select_module; 10 extern ngx_module_t ngx_select_module;
11 #if (HAVE_POLL)
12 extern ngx_module_t ngx_poll_module;
13 #endif
11 #if (HAVE_KQUEUE) 14 #if (HAVE_KQUEUE)
12 extern ngx_module_t ngx_kqueue_module; 15 extern ngx_module_t ngx_kqueue_module;
16 #endif
17 #if (HAVE_DEVPOLL)
18 extern ngx_module_t ngx_devpoll_module;
13 #endif 19 #endif
14 20
15 21
16 extern ngx_module_t ngx_http_module; 22 extern ngx_module_t ngx_http_module;
17 extern ngx_module_t ngx_http_core_module; 23 extern ngx_module_t ngx_http_core_module;
30 36
31 &ngx_events_module, 37 &ngx_events_module,
32 &ngx_event_module, 38 &ngx_event_module,
33 39
34 &ngx_select_module, 40 &ngx_select_module,
41 #if (HAVE_POLL)
42 &ngx_poll_module,
43 #endif
35 #if (HAVE_KQUEUE) 44 #if (HAVE_KQUEUE)
36 &ngx_kqueue_module, 45 &ngx_kqueue_module,
46 #endif
47 #if (HAVE_DEVPOLL)
48 &ngx_devpoll_module,
37 #endif 49 #endif
38 50
39 /* http */ 51 /* http */
40 52
41 &ngx_http_module, 53 &ngx_http_module,