summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorRyan Zoeller <rtzoeller@rtzoeller.com>2021-10-16 12:23:42 -0500
committerRyan Zoeller <rtzoeller@rtzoeller.com>2021-12-22 12:59:35 -0600
commite5af88425160d24a99c8a5cb40b7e6a4712bab0b (patch)
treeba4bb5c7e1485f55df15fb7fffc4a137f7f8b184 /src/sys
parent3e952d3af7cf6a42c32c5d7415c6320db3545a6d (diff)
downloadnix-e5af88425160d24a99c8a5cb40b7e6a4712bab0b.zip
Recent versions of Android support EPOLLEXCLUSIVE
Enable epoll tests on Android, because they are passing.
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/epoll.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sys/epoll.rs b/src/sys/epoll.rs
index 678c27f9..8141ff5c 100644
--- a/src/sys/epoll.rs
+++ b/src/sys/epoll.rs
@@ -18,8 +18,6 @@ libc_bitflags!(
EPOLLERR;
EPOLLHUP;
EPOLLRDHUP;
- #[cfg(target_os = "linux")] // Added in 4.5; not in Android.
- #[cfg_attr(docsrs, doc(cfg(all())))]
EPOLLEXCLUSIVE;
#[cfg(not(target_arch = "mips"))]
EPOLLWAKEUP;