File tree Expand file tree Collapse file tree 5 files changed +7
-16
lines changed Expand file tree Collapse file tree 5 files changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -430,6 +430,7 @@ EPFNOSUPPORT
430430EPIPE
431431EPOLLERR
432432EPOLLET
433+ EPOLLEXCLUSIVE
433434EPOLLHUP
434435EPOLLIN
435436EPOLLMSG
Original file line number Diff line number Diff line change @@ -792,9 +792,6 @@ pub const EPROTO: ::c_int = 71;
792792pub const EDOTDOT : :: c_int = 73 ;
793793
794794pub const EPOLL_CLOEXEC : :: c_int = 0x80000 ;
795- pub const EPOLLONESHOT : :: c_int = 0x40000000 ;
796- pub const EPOLLRDHUP : :: c_int = 0x00002000 ;
797- pub const EPOLLWAKEUP : :: c_int = 0x20000000 ;
798795
799796// sys/eventfd.h
800797pub const EFD_SEMAPHORE : :: c_int = 0x1 ;
Original file line number Diff line number Diff line change @@ -965,10 +965,6 @@ pub const SHM_UNLOCK: ::c_int = 12;
965965pub const SHM_HUGETLB : :: c_int = 0o4000 ;
966966pub const SHM_NORESERVE : :: c_int = 0o10000 ;
967967
968- pub const EPOLLRDHUP : :: c_int = 0x2000 ;
969- pub const EPOLLEXCLUSIVE : :: c_int = 0x10000000 ;
970- pub const EPOLLONESHOT : :: c_int = 0x40000000 ;
971-
972968pub const QFMT_VFS_OLD : :: c_int = 1 ;
973969pub const QFMT_VFS_V0 : :: c_int = 2 ;
974970
@@ -1372,8 +1368,6 @@ pub const PTRACE_INTERRUPT: ::c_int = 0x4207;
13721368pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
13731369pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
13741370
1375- pub const EPOLLWAKEUP : :: c_int = 0x20000000 ;
1376-
13771371pub const PTRACE_GETFPREGS : :: c_uint = 14 ;
13781372pub const PTRACE_SETFPREGS : :: c_uint = 15 ;
13791373pub const PTRACE_GETFPXREGS : :: c_uint = 18 ;
Original file line number Diff line number Diff line change @@ -1551,11 +1551,6 @@ pub const SHM_HUGETLB: ::c_int = 0o4000;
15511551#[ cfg( not( all( target_env = "uclibc" , target_arch = "mips" ) ) ) ]
15521552pub const SHM_NORESERVE : :: c_int = 0o10000 ;
15531553
1554- pub const EPOLLRDHUP : :: c_int = 0x2000 ;
1555- pub const EPOLLEXCLUSIVE : :: c_int = 0x10000000 ;
1556- pub const EPOLLWAKEUP : :: c_int = 0x20000000 ;
1557- pub const EPOLLONESHOT : :: c_int = 0x40000000 ;
1558-
15591554pub const QFMT_VFS_OLD : :: c_int = 1 ;
15601555pub const QFMT_VFS_V0 : :: c_int = 2 ;
15611556pub const QFMT_VFS_V1 : :: c_int = 4 ;
Original file line number Diff line number Diff line change @@ -1028,13 +1028,17 @@ pub const FD_SETSIZE: usize = 1024;
10281028pub const EPOLLIN : :: c_int = 0x1 ;
10291029pub const EPOLLPRI : :: c_int = 0x2 ;
10301030pub const EPOLLOUT : :: c_int = 0x4 ;
1031+ pub const EPOLLERR : :: c_int = 0x8 ;
1032+ pub const EPOLLHUP : :: c_int = 0x10 ;
10311033pub const EPOLLRDNORM : :: c_int = 0x40 ;
10321034pub const EPOLLRDBAND : :: c_int = 0x80 ;
10331035pub const EPOLLWRNORM : :: c_int = 0x100 ;
10341036pub const EPOLLWRBAND : :: c_int = 0x200 ;
10351037pub const EPOLLMSG : :: c_int = 0x400 ;
1036- pub const EPOLLERR : :: c_int = 0x8 ;
1037- pub const EPOLLHUP : :: c_int = 0x10 ;
1038+ pub const EPOLLRDHUP : :: c_int = 0x2000 ;
1039+ pub const EPOLLEXCLUSIVE : :: c_int = 0x10000000 ;
1040+ pub const EPOLLWAKEUP : :: c_int = 0x20000000 ;
1041+ pub const EPOLLONESHOT : :: c_int = 0x40000000 ;
10381042pub const EPOLLET : :: c_int = 0x80000000 ;
10391043
10401044pub const EPOLL_CTL_ADD : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments