summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_event_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_event_file.h')
-rw-r--r--src/nxt_event_file.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/nxt_event_file.h b/src/nxt_event_file.h
new file mode 100644
index 00000000..8426f912
--- /dev/null
+++ b/src/nxt_event_file.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (C) Igor Sysoev
+ * Copyright (C) NGINX, Inc.
+ */
+
+#ifndef _NXT_EVENT_FILE_H_INCLUDED_
+#define _NXT_EVENT_FILE_H_INCLUDED_
+
+
+typedef struct {
+ void *data;
+ nxt_file_t *file;
+ nxt_work_handler_t handler;
+} nxt_event_file_t;
+
+
+#endif /* _NXT_EVENT_FILE_H_INCLUDED_ */