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) {
486
486
"KERN_USERMOUNT" | "KERN_ARND" => true ,
487
487
// Good chance it's going to be wrong depending on the host release
488
488
"KERN_MAXID" | "NET_RT_MAXID" => true ,
489
+ "EV_SYSFLAGS" => true ,
489
490
_ => false ,
490
491
}
491
492
} ) ;
Original file line number Diff line number Diff line change @@ -1173,7 +1173,9 @@ pub const EV_DISPATCH: u16 = 0x80;
1173
1173
pub const EV_FLAG1 : u16 = 0x2000 ;
1174
1174
pub const EV_ERROR : u16 = 0x4000 ;
1175
1175
pub 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 ;
1177
1179
1178
1180
pub const NOTE_LOWAT : u32 = 0x00000001 ;
1179
1181
pub const NOTE_EOF : u32 = 0x00000002 ;
You can’t perform that action at this time.
0 commit comments