From: Szabolcs Nagy Date: Sat, 12 Jan 2013 16:29:45 +0000 (+0100) Subject: add EPOLLWAKEUP flag to sys/epoll.h X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=ada88f6178db186305d6c8f2fe1420d71490a798 add EPOLLWAKEUP flag to sys/epoll.h --- diff --git a/include/sys/epoll.h b/include/sys/epoll.h index 0ff3d491..5e131ab1 100644 --- a/include/sys/epoll.h +++ b/include/sys/epoll.h @@ -28,6 +28,7 @@ enum EPOLL_EVENTS { __EPOLL_DUMMY }; #define EPOLLERR 0x008 #define EPOLLHUP 0x010 #define EPOLLRDHUP 0x2000 +#define EPOLLWAKEUP (1U<<29) #define EPOLLONESHOT (1U<<30) #define EPOLLET (1U<<31)