xref: /unit/src/nxt_file_event.h (revision 62:5e1efcc7b740)
1 /*
2  * Copyright (C) Igor Sysoev
3  * Copyright (C) NGINX, Inc.
4  */
5 
6 #ifndef _NXT_FILE_EVENT_H_INCLUDED_
7 #define _NXT_FILE_EVENT_H_INCLUDED_
8 
9 
10 typedef struct {
11     void                *data;
12     nxt_file_t          *file;
13     nxt_work_handler_t  handler;
14     nxt_task_t          *task;
15 } nxt_file_event_t;
16 
17 
18 #endif /* _NXT_FILE_EVENT_H_INCLUDED_ */
19