File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/unix/bsd/netbsdlike/openbsd Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -486,6 +486,7 @@ fn test_openbsd(target: &str) {
486486 "KERN_USERMOUNT" | "KERN_ARND" => true ,
487487 // Good chance it's going to be wrong depending on the host release
488488 "KERN_MAXID" | "NET_RT_MAXID" => true ,
489+ "EV_SYSFLAGS" => true ,
489490 _ => false ,
490491 }
491492 } ) ;
Original file line number Diff line number Diff line change @@ -1173,7 +1173,9 @@ pub const EV_DISPATCH: u16 = 0x80;
11731173pub const EV_FLAG1 : u16 = 0x2000 ;
11741174pub const EV_ERROR : u16 = 0x4000 ;
11751175pub const EV_EOF : u16 = 0x8000 ;
1176- pub const EV_SYSFLAGS : u16 = 0xf000 ;
1176+
1177+ #[ deprecated( since = "0.2.113" , note = "Not stable across OS versions" ) ]
1178+ pub const EV_SYSFLAGS : u16 = 0xf800 ;
11771179
11781180pub const NOTE_LOWAT : u32 = 0x00000001 ;
11791181pub const NOTE_EOF : u32 = 0x00000002 ;
You can’t perform that action at this time.
0 commit comments