summaryrefslogtreecommitdiff
path: root/src/kqueue.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-04-20 07:42:10 +0200
committerMartin Sustrik <sustrik@250bpm.com>2012-04-21 07:30:23 +0200
commit0fb5a016497d3061a6edf40752c06127f3abb796 (patch)
tree6abe36205647f5b8c134954f4d22a0c3c3bc98b1 /src/kqueue.cpp
parent0a12aa09b65c67033b5021057dd04fde0a3cabb5 (diff)
Select polling mechanisms at one place
This patch provides a single place for selecting polling mechanisms (polling.hpp). Up to now the selection was spread among the build system and several source files. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/kqueue.cpp')
-rw-r--r--src/kqueue.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kqueue.cpp b/src/kqueue.cpp
index c3ef5b5..06e22d3 100644
--- a/src/kqueue.cpp
+++ b/src/kqueue.cpp
@@ -21,7 +21,7 @@
#include "kqueue.hpp"
-#if defined XS_HAVE_KQUEUE
+#if defined XS_USE_ASYNC_KQUEUE
#include <sys/time.h>
#include <sys/types.h>
@@ -31,6 +31,7 @@
#include <algorithm>
#include <new>
+#include "platform.hpp"
#include "kqueue.hpp"
#include "err.hpp"
#include "config.hpp"