From 46af3376bde0b247e7f827642e53dbae7c21be3d Mon Sep 17 00:00:00 2001 From: kolapapa <346512016@qq.com> Date: Mon, 4 Jan 2021 14:42:14 +0800 Subject: Add EPOLLEXCLUSIVE && EPOLLWAKEUP --- src/unix/uclibc/mips/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/unix/uclibc/mips/mod.rs b/src/unix/uclibc/mips/mod.rs index 6a9b41c9f0..de76971ae3 100644 --- a/src/unix/uclibc/mips/mod.rs +++ b/src/unix/uclibc/mips/mod.rs @@ -28,6 +28,8 @@ pub const SA_RESETHAND: ::c_int = 0x80000000; pub const SA_RESTART: ::c_int = 0x10000000; pub const SA_NOCLDSTOP: ::c_int = 0x00000001; +pub const EPOLLEXCLUSIVE: ::c_int = 0x10000000; // from linux/mod.rs +pub const EPOLLWAKEUP: ::c_int = 0x20000000; // from linux/other/mod.rs pub const EPOLL_CLOEXEC: ::c_int = 0x80000; pub const EFD_CLOEXEC: ::c_int = 0x80000; -- cgit v1.2.1