File tree 2 files changed +5
-0
lines changed
src/unix/bsd/netbsdlike/openbsdlike
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -440,6 +440,9 @@ fn main() {
440
440
"KERN_USERMOUNT" |
441
441
"KERN_ARND" if openbsd => true ,
442
442
443
+ // These constats were added in OpenBSD 6.2
444
+ "EV_RECEIPT" | "EV_DISPATCH" if openbsd => true ,
445
+
443
446
// These are either unimplemented or optionally built into uClibc
444
447
"LC_CTYPE_MASK" | "LC_NUMERIC_MASK" | "LC_TIME_MASK" | "LC_COLLATE_MASK" | "LC_MONETARY_MASK" | "LC_MESSAGES_MASK" |
445
448
"MADV_MERGEABLE" | "MADV_UNMERGEABLE" | "MADV_HWPOISON" | "IPV6_ADD_MEMBERSHIP" | "IPV6_DROP_MEMBERSHIP" | "IPV6_MULTICAST_LOOP" | "IPV6_V6ONLY" |
Original file line number Diff line number Diff line change @@ -431,6 +431,8 @@ pub const EV_ENABLE: ::uint16_t = 0x4;
431
431
pub const EV_DISABLE : :: uint16_t = 0x8 ;
432
432
pub const EV_ONESHOT : :: uint16_t = 0x10 ;
433
433
pub const EV_CLEAR : :: uint16_t = 0x20 ;
434
+ pub const EV_RECEIPT : :: uint16_t = 0x40 ;
435
+ pub const EV_DISPATCH : :: uint16_t = 0x80 ;
434
436
pub const EV_FLAG1 : :: uint16_t = 0x2000 ;
435
437
pub const EV_ERROR : :: uint16_t = 0x4000 ;
436
438
pub const EV_EOF : :: uint16_t = 0x8000 ;
You can’t perform that action at this time.
0 commit comments