add EPOLLWAKEUP flag to sys/epoll.h

This commit is contained in:
Szabolcs Nagy 2013-01-12 17:29:45 +01:00
parent c7351ffe9b
commit ada88f6178
1 changed files with 1 additions and 0 deletions

View File

@ -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)