From: Jérémie Galarneau Date: Tue, 9 May 2017 12:50:39 +0000 (-0400) Subject: Fix: missing header causes build failure with --disable-epoll X-Git-Tag: v2.11.0-rc1~591 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=d53ea4e443912f7b3fe89da38e3374db2a1a3bf8 Fix: missing header causes build failure with --disable-epoll Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/notification-thread-events.c b/src/bin/lttng-sessiond/notification-thread-events.c index e20c476f8..4107bec96 100644 --- a/src/bin/lttng-sessiond/notification-thread-events.c +++ b/src/bin/lttng-sessiond/notification-thread-events.c @@ -40,6 +40,7 @@ #include #include #include +#include #define CLIENT_POLL_MASK_IN (LPOLLIN | LPOLLERR | LPOLLHUP | LPOLLRDHUP) #define CLIENT_POLL_MASK_IN_OUT (CLIENT_POLL_MASK_IN | LPOLLOUT)