comparison src/event/modules/ngx_aio_module.c @ 380:5ce6561246a5

nginx-0.0.7-2004-07-07-10:15:04 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 07 Jul 2004 06:15:04 +0000
parents 4b1a3a4acc60
children da8c5707af39
comparison
equal deleted inserted replaced
379:73688d5d7fc3 380:5ce6561246a5
38 ngx_aio_del_event, /* delete an event */ 38 ngx_aio_del_event, /* delete an event */
39 NULL, /* enable an event */ 39 NULL, /* enable an event */
40 NULL, /* disable an event */ 40 NULL, /* disable an event */
41 NULL, /* add an connection */ 41 NULL, /* add an connection */
42 ngx_aio_del_connection, /* delete an connection */ 42 ngx_aio_del_connection, /* delete an connection */
43 NULL, /* process the changes */
43 ngx_aio_process_events, /* process the events */ 44 ngx_aio_process_events, /* process the events */
44 ngx_aio_init, /* init the events */ 45 ngx_aio_init, /* init the events */
45 ngx_aio_done /* done the events */ 46 ngx_aio_done /* done the events */
46 } 47 }
47 48
137 } 138 }
138 139
139 140
140 static int ngx_aio_process_events(ngx_cycle_t *cycle) 141 static int ngx_aio_process_events(ngx_cycle_t *cycle)
141 { 142 {
142 return ngx_kqueue_module_ctx.actions.process(cycle); 143 return ngx_kqueue_module_ctx.actions.process_events(cycle);
143 } 144 }
144 145
145 #endif /* HAVE_KQUEUE */ 146 #endif /* HAVE_KQUEUE */
146 147
147 148