summaryrefslogtreecommitdiff
path: root/epoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'epoll.c')
-rw-r--r--epoll.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/epoll.c b/epoll.c
index 41a2a120..44c787d8 100644
--- a/epoll.c
+++ b/epoll.c
@@ -59,6 +59,14 @@
#include "evmap-internal.h"
#include "changelist-internal.h"
#include "time-internal.h"
+
+/* Since Linux 2.6.17, epoll is able to report about peer half-closed connection
+ using special EPOLLRDHUP flag on a read event.
+*/
+#if !defined(EPOLLRDHUP)
+#define EPOLLRDHUP 0
+#endif
+
#include "epolltable-internal.h"
#if defined(EVENT__HAVE_SYS_TIMERFD_H) && \
@@ -72,13 +80,6 @@
#define USING_TIMERFD
#endif
-/* Since Linux 2.6.17, epoll is able to report about peer half-closed connection
- using special EPOLLRDHUP flag on a read event.
-*/
-#if !defined(EPOLLRDHUP)
-#define EPOLLRDHUP 0
-#endif
-
struct epollop {
struct epoll_event *events;
int nevents;