diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-02-07 20:04:56 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-02-07 20:04:56 +0300 |
commit | 059a8642898a6bd4b47d13a1c1d599cd44af7e1c (patch) | |
tree | e3c8c530a04f1ae44777d5ea4fd6901dc55a8ebf /src/nxt_main.h | |
parent | e57b95a92333fa7ff558737b0ba2b76894cc0412 (diff) | |
download | unit-059a8642898a6bd4b47d13a1c1d599cd44af7e1c.tar.gz unit-059a8642898a6bd4b47d13a1c1d599cd44af7e1c.tar.bz2 |
Event engines refactoring.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_main.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/nxt_main.h b/src/nxt_main.h index 54e414d4..22f39a59 100644 --- a/src/nxt_main.h +++ b/src/nxt_main.h @@ -43,7 +43,7 @@ typedef struct nxt_log_s nxt_log_t; /* TODO: remove unused */ -typedef struct nxt_event_fd_s nxt_event_fd_t; +typedef struct nxt_fd_event_s nxt_fd_event_t; typedef struct nxt_sockaddr_s nxt_sockaddr_t; @@ -118,7 +118,7 @@ nxt_thread_extern_data(nxt_thread_t, nxt_thread_context); #include <nxt_thread_log.h> -#include <nxt_event_fd.h> +#include <nxt_fd_event.h> #include <nxt_port_socket.h> #if (NXT_THREADS) @@ -131,10 +131,7 @@ typedef void (*nxt_event_conn_handler_t)(nxt_thread_t *thr, #include <nxt_listen_socket.h> #include <nxt_event_conn.h> - #include <nxt_event_file.h> - -#include <nxt_event_set.h> #include <nxt_event_engine.h> #include <nxt_job.h> |