summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-03-02 21:10:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-03-02 21:10:20 +0000
commitc997deaaee99ebf42bde248673d037a7e1023b7b (patch)
tree0f3a7bcad004b4714496491265dbbd759b5f119e /libc
parent44fb69f50b0b6faab1c2b4e4c63cf914868f8436 (diff)
downloaduClibc-alpine-c997deaaee99ebf42bde248673d037a7e1023b7b.tar.bz2
uClibc-alpine-c997deaaee99ebf42bde248673d037a7e1023b7b.tar.xz
Add EPOLLRDHUP constant
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/sys/epoll.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/sys/epoll.h b/libc/sysdeps/linux/common/sys/epoll.h
index 68f173a04..44e814bfd 100644
--- a/libc/sysdeps/linux/common/sys/epoll.h
+++ b/libc/sysdeps/linux/common/sys/epoll.h
@@ -45,6 +45,8 @@ enum EPOLL_EVENTS
#define EPOLLERR EPOLLERR
EPOLLHUP = 0x010,
#define EPOLLHUP EPOLLHUP
+ EPOLLRDHUP = 0x2000,
+#define EPOLLRDHUP EPOLLRDHUP
EPOLLONESHOT = (1 << 30),
#define EPOLLONESHOT EPOLLONESHOT
EPOLLET = (1 << 31)