diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-01-12 17:29:45 +0100 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-01-12 19:42:39 +0100 |
commit | ada88f6178db186305d6c8f2fe1420d71490a798 (patch) | |
tree | f4f7232cb94a478783caa8c0da33694b3df7f084 /include | |
parent | c7351ffe9b9bbc6297ffad252ab1f6e39db87d73 (diff) | |
download | musl-ada88f6178db186305d6c8f2fe1420d71490a798.tar.gz musl-ada88f6178db186305d6c8f2fe1420d71490a798.tar.xz musl-ada88f6178db186305d6c8f2fe1420d71490a798.zip |
add EPOLLWAKEUP flag to sys/epoll.h
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/epoll.h | 1 |
1 files changed, 1 insertions, 0 deletions
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) |