Skip to content

Commit a98a649

Browse files
committed
Auto merge of #2019 - kolapapa:mipsel-uclibc, r=JohnTitor
Add EPOLLEXCLUSIVE && EPOLLWAKEUP
2 parents 9d6d018 + 46af337 commit a98a649

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/unix/uclibc/mips/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ pub const SA_RESETHAND: ::c_int = 0x80000000;
2828
pub const SA_RESTART: ::c_int = 0x10000000;
2929
pub const SA_NOCLDSTOP: ::c_int = 0x00000001;
3030

31+
pub const EPOLLEXCLUSIVE: ::c_int = 0x10000000; // from linux/mod.rs
32+
pub const EPOLLWAKEUP: ::c_int = 0x20000000; // from linux/other/mod.rs
3133
pub const EPOLL_CLOEXEC: ::c_int = 0x80000;
3234

3335
pub const EFD_CLOEXEC: ::c_int = 0x80000;

0 commit comments

Comments
 (0)