diff options
Diffstat (limited to 'src/nxt_event_engine.h')
-rw-r--r-- | src/nxt_event_engine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nxt_event_engine.h b/src/nxt_event_engine.h index 6947cc8d..5b602bc0 100644 --- a/src/nxt_event_engine.h +++ b/src/nxt_event_engine.h @@ -123,13 +123,13 @@ typedef struct { * events. */ void (*enable_file)(nxt_event_engine_t *engine, - nxt_event_file_t *fev); + nxt_file_event_t *ev); /* * Delete a file from an event set before closing the file descriptor. */ void (*close_file)(nxt_event_engine_t *engine, - nxt_event_file_t *fev); + nxt_file_event_t *ev); /* * Enable post event notifications and set a post handler to handle @@ -157,7 +157,7 @@ typedef struct { nxt_msec_t timeout); /* I/O operations suitable to underlying event facility. */ - nxt_event_conn_io_t *io; + nxt_conn_io_t *io; /* True if an event facility supports file change event notifications. */ uint8_t file_support; /* 1 bit */ |