@@ -910,7 +910,7 @@ pub const CTLFLAG_STATS: ::c_int = 0x00002000;
910
910
pub const CTLFLAG_NOFETCH : :: c_int = 0x00001000 ;
911
911
pub const CTLFLAG_CAPRW : :: c_int = CTLFLAG_CAPRD | CTLFLAG_CAPWR ;
912
912
cfg_if ! {
913
- if #[ cfg( freebsd13) ] {
913
+ if #[ cfg( any ( freebsd13, freebsd14 ) ) ] {
914
914
pub const CTLFLAG_NEEDGIANT : :: c_int = 0x00000800 ;
915
915
}
916
916
}
@@ -930,7 +930,7 @@ pub const CTL_SYSCTL_OIDFMT: ::c_int = 4;
930
930
pub const CTL_SYSCTL_OIDDESCR : :: c_int = 5 ;
931
931
pub const CTL_SYSCTL_OIDLABEL : :: c_int = 6 ;
932
932
cfg_if ! {
933
- if #[ cfg( freebsd13) ] {
933
+ if #[ cfg( any ( freebsd13, freebsd14 ) ) ] {
934
934
pub const CTL_SYSCTL_NEXTNOSKIP : :: c_int = 7 ;
935
935
}
936
936
}
@@ -972,11 +972,8 @@ pub const KERN_LOGSIGEXIT: ::c_int = 34;
972
972
pub const KERN_IOV_MAX : :: c_int = 35 ;
973
973
pub const KERN_HOSTUUID : :: c_int = 36 ;
974
974
pub const KERN_ARND : :: c_int = 37 ;
975
- cfg_if ! {
976
- if #[ cfg( any( freebsd12, freebsd13) ) ] {
977
- pub const KERN_MAXPHYS : :: c_int = 38 ;
978
- }
979
- }
975
+ pub const KERN_MAXPHYS : :: c_int = 38 ;
976
+ pub const KERN_STACKTOP : :: c_int = 39 ;
980
977
981
978
pub const KERN_PROC_ALL : :: c_int = 0 ;
982
979
pub const KERN_PROC_PID : :: c_int = 1 ;
@@ -1008,7 +1005,7 @@ pub const KERN_PROC_SIGTRAMP: ::c_int = 41;
1008
1005
pub const KERN_PROC_CWD : :: c_int = 42 ;
1009
1006
pub const KERN_PROC_NFDS : :: c_int = 43 ;
1010
1007
cfg_if ! {
1011
- if #[ cfg( freebsd13) ] {
1008
+ if #[ cfg( any ( freebsd13, freebsd14 ) ) ] {
1012
1009
pub const KERN_PROC_SIGFASTBLK : :: c_int = 44 ;
1013
1010
}
1014
1011
}
@@ -1055,7 +1052,7 @@ pub const USER_POSIX2_UPE: ::c_int = 18;
1055
1052
pub const USER_STREAM_MAX : :: c_int = 19 ;
1056
1053
pub const USER_TZNAME_MAX : :: c_int = 20 ;
1057
1054
cfg_if ! {
1058
- if #[ cfg( freebsd13) ] {
1055
+ if #[ cfg( any ( freebsd13, freebsd14 ) ) ] {
1059
1056
pub const USER_LOCALBASE : :: c_int = 21 ;
1060
1057
}
1061
1058
}
@@ -2131,7 +2128,7 @@ pub const SLOCK: ::c_char = 7;
2131
2128
pub const P_MAGIC : :: c_int = 0xbeefface ;
2132
2129
2133
2130
cfg_if ! {
2134
- if #[ cfg( freebsd13) ] {
2131
+ if #[ cfg( any ( freebsd13, freebsd14 ) ) ] {
2135
2132
pub const TDP_SIGFASTBLOCK : :: c_int = 0x00000100 ;
2136
2133
pub const TDP_UIOHELD : :: c_int = 0x10000000 ;
2137
2134
pub const TDP_SIGFASTPENDING : :: c_int = 0x80000000 ;
@@ -2141,7 +2138,7 @@ cfg_if! {
2141
2138
}
2142
2139
}
2143
2140
cfg_if ! {
2144
- if #[ cfg( any( freebsd12, freebsd13) ) ] {
2141
+ if #[ cfg( any( freebsd12, freebsd13, freebsd14 ) ) ] {
2145
2142
pub const TDP2_SBPAGES : :: c_int = 0x00000001 ;
2146
2143
pub const P2_ASLR_ENABLE : :: c_int = 0x00000040 ;
2147
2144
pub const P2_ASLR_DISABLE : :: c_int = 0x00000080 ;
0 commit comments