File tree 5 files changed +7
-16
lines changed
5 files changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -430,6 +430,7 @@ EPFNOSUPPORT
430
430
EPIPE
431
431
EPOLLERR
432
432
EPOLLET
433
+ EPOLLEXCLUSIVE
433
434
EPOLLHUP
434
435
EPOLLIN
435
436
EPOLLMSG
Original file line number Diff line number Diff line change @@ -792,9 +792,6 @@ pub const EPROTO: ::c_int = 71;
792
792
pub const EDOTDOT : :: c_int = 73 ;
793
793
794
794
pub 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 ;
798
795
799
796
// sys/eventfd.h
800
797
pub 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;
965
965
pub const SHM_HUGETLB : :: c_int = 0o4000 ;
966
966
pub const SHM_NORESERVE : :: c_int = 0o10000 ;
967
967
968
- pub const EPOLLRDHUP : :: c_int = 0x2000 ;
969
- pub const EPOLLEXCLUSIVE : :: c_int = 0x10000000 ;
970
- pub const EPOLLONESHOT : :: c_int = 0x40000000 ;
971
-
972
968
pub const QFMT_VFS_OLD : :: c_int = 1 ;
973
969
pub const QFMT_VFS_V0 : :: c_int = 2 ;
974
970
@@ -1372,8 +1368,6 @@ pub const PTRACE_INTERRUPT: ::c_int = 0x4207;
1372
1368
pub const PTRACE_LISTEN : :: c_int = 0x4208 ;
1373
1369
pub const PTRACE_PEEKSIGINFO : :: c_int = 0x4209 ;
1374
1370
1375
- pub const EPOLLWAKEUP : :: c_int = 0x20000000 ;
1376
-
1377
1371
pub const PTRACE_GETFPREGS : :: c_uint = 14 ;
1378
1372
pub const PTRACE_SETFPREGS : :: c_uint = 15 ;
1379
1373
pub 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;
1551
1551
#[ cfg( not( all( target_env = "uclibc" , target_arch = "mips" ) ) ) ]
1552
1552
pub const SHM_NORESERVE : :: c_int = 0o10000 ;
1553
1553
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
-
1559
1554
pub const QFMT_VFS_OLD : :: c_int = 1 ;
1560
1555
pub const QFMT_VFS_V0 : :: c_int = 2 ;
1561
1556
pub 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;
1028
1028
pub const EPOLLIN : :: c_int = 0x1 ;
1029
1029
pub const EPOLLPRI : :: c_int = 0x2 ;
1030
1030
pub const EPOLLOUT : :: c_int = 0x4 ;
1031
+ pub const EPOLLERR : :: c_int = 0x8 ;
1032
+ pub const EPOLLHUP : :: c_int = 0x10 ;
1031
1033
pub const EPOLLRDNORM : :: c_int = 0x40 ;
1032
1034
pub const EPOLLRDBAND : :: c_int = 0x80 ;
1033
1035
pub const EPOLLWRNORM : :: c_int = 0x100 ;
1034
1036
pub const EPOLLWRBAND : :: c_int = 0x200 ;
1035
1037
pub 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 ;
1038
1042
pub const EPOLLET : :: c_int = 0x80000000 ;
1039
1043
1040
1044
pub const EPOLL_CTL_ADD : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments