From c78c41cefcf1e1fa8005f81b7c6cc0c857bcf46f Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 7 Jul 2004 06:15:04 +0000 Subject: nginx-0.0.7-2004-07-07-10:15:04 import --- src/event/modules/ngx_aio_module.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/event/modules/ngx_aio_module.c') diff --git a/src/event/modules/ngx_aio_module.c b/src/event/modules/ngx_aio_module.c index f04ba8d22..7f9a22cec 100644 --- a/src/event/modules/ngx_aio_module.c +++ b/src/event/modules/ngx_aio_module.c @@ -40,6 +40,7 @@ ngx_event_module_t ngx_aio_module_ctx = { NULL, /* disable an event */ NULL, /* add an connection */ ngx_aio_del_connection, /* delete an connection */ + NULL, /* process the changes */ ngx_aio_process_events, /* process the events */ ngx_aio_init, /* init the events */ ngx_aio_done /* done the events */ @@ -139,7 +140,7 @@ static int ngx_aio_del_connection(ngx_connection_t *c, u_int flags) static int ngx_aio_process_events(ngx_cycle_t *cycle) { - return ngx_kqueue_module_ctx.actions.process(cycle); + return ngx_kqueue_module_ctx.actions.process_events(cycle); } #endif /* HAVE_KQUEUE */ -- cgit