diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-12-26 16:55:49 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-12-26 16:55:49 -0500 |
commit | 8442358d9dfc78261a5eab1f2cb13861c6e13207 (patch) | |
tree | de5d98f886234556e5535256702ca16ae9239785 /include | |
parent | e172c7b4df9a33e3f090e347eebd5426b94e6fee (diff) | |
download | musl-8442358d9dfc78261a5eab1f2cb13861c6e13207.tar.gz musl-8442358d9dfc78261a5eab1f2cb13861c6e13207.tar.xz musl-8442358d9dfc78261a5eab1f2cb13861c6e13207.zip |
add linux extension POLLRDHUP to poll.h
the POLL prefix is in the reserved namespace for poll.h, so no feature test macro checks are needed.
Diffstat (limited to 'include')
-rw-r--r-- | include/poll.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/poll.h b/include/poll.h index f0e68b2f..9a785307 100644 --- a/include/poll.h +++ b/include/poll.h @@ -18,6 +18,7 @@ extern "C" { #define POLLWRNORM 0x100 #define POLLWRBAND 0x200 #define POLLMSG 0x400 +#define POLLRDHUP 0x2000 typedef unsigned long nfds_t; |