diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-06-14 15:18:52 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-06-14 15:18:52 +0300 |
commit | 7574c64992b98d3dfbc3dd101bd0f7d78bad0823 (patch) | |
tree | 3a98c46e88d9023df34be3e6cce4f762d53aad36 /src/nxt_file_event.h | |
parent | 3e2632688f53c4cb08e7ac03c61e71facd038df4 (diff) | |
download | unit-7574c64992b98d3dfbc3dd101bd0f7d78bad0823.tar.gz unit-7574c64992b98d3dfbc3dd101bd0f7d78bad0823.tar.bz2 |
nxt_event_conn_... functions and structures have been renamed
to nxt_conn_...
Diffstat (limited to 'src/nxt_file_event.h')
-rw-r--r-- | src/nxt_file_event.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/nxt_file_event.h b/src/nxt_file_event.h new file mode 100644 index 00000000..d4255ce9 --- /dev/null +++ b/src/nxt_file_event.h @@ -0,0 +1,18 @@ +/* + * Copyright (C) Igor Sysoev + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_FILE_EVENT_H_INCLUDED_ +#define _NXT_FILE_EVENT_H_INCLUDED_ + + +typedef struct { + void *data; + nxt_file_t *file; + nxt_work_handler_t handler; + nxt_task_t *task; +} nxt_file_event_t; + + +#endif /* _NXT_FILE_EVENT_H_INCLUDED_ */ |