diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-04-02 15:13:20 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-04-02 15:13:20 +0000 |
commit | c972a3fe2774c329cd64fdaf36f51e28a130bf4c (patch) | |
tree | d510db8b672c1d8eddc2a533d166f04223b4de81 /src/event/modules/ngx_aio_module.c | |
parent | debb39eaedf46e63d22f4604da01cf26a1e8a930 (diff) | |
download | nginx-c972a3fe2774c329cd64fdaf36f51e28a130bf4c.tar.gz nginx-c972a3fe2774c329cd64fdaf36f51e28a130bf4c.zip |
nginx-0.0.3-2004-04-02-19:13:20 import
Diffstat (limited to 'src/event/modules/ngx_aio_module.c')
-rw-r--r-- | src/event/modules/ngx_aio_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/event/modules/ngx_aio_module.c b/src/event/modules/ngx_aio_module.c index 24516a423..f04ba8d22 100644 --- a/src/event/modules/ngx_aio_module.c +++ b/src/event/modules/ngx_aio_module.c @@ -14,7 +14,7 @@ static void ngx_aio_done(ngx_cycle_t *cycle); static int ngx_aio_add_event(ngx_event_t *ev, int event, u_int flags); static int ngx_aio_del_event(ngx_event_t *ev, int event, u_int flags); static int ngx_aio_del_connection(ngx_connection_t *c, u_int flags); -static int ngx_aio_process_events(ngx_log_t *log); +static int ngx_aio_process_events(ngx_cycle_t *cycle); ngx_os_io_t ngx_os_aio = { @@ -53,7 +53,7 @@ ngx_module_t ngx_aio_module = { NULL, /* module directives */ NGX_EVENT_MODULE, /* module type */ NULL, /* init module */ - NULL /* init child */ + NULL /* init process */ }; @@ -137,9 +137,9 @@ static int ngx_aio_del_connection(ngx_connection_t *c, u_int flags) } -static int ngx_aio_process_events(ngx_log_t *log) +static int ngx_aio_process_events(ngx_cycle_t *cycle) { - return ngx_kqueue_module_ctx.actions.process(log); + return ngx_kqueue_module_ctx.actions.process(cycle); } #endif /* HAVE_KQUEUE */ |