File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ HWCAP2_SVEBITPERM
7
7
HWCAP2_SVEPMULL
8
8
HWCAP2_SVESHA3
9
9
HWCAP2_SVESM4
10
+ PROT_BTI
11
+ PROT_MTE
10
12
SYS_arch_specific_syscall
11
13
SYS_syscalls
12
14
SYS_fcntl
Original file line number Diff line number Diff line change @@ -412,6 +412,9 @@ pub const SYS_fsmount: ::c_long = 432;
412
412
pub const SYS_fspick : :: c_long = 433 ;
413
413
pub const SYS_syscalls : :: c_long = 436 ;
414
414
415
+ pub const PROT_BTI : :: c_int = 0x10 ;
416
+ pub const PROT_MTE : :: c_int = 0x20 ;
417
+
415
418
cfg_if ! {
416
419
if #[ cfg( libc_align) ] {
417
420
mod align;
Original file line number Diff line number Diff line change @@ -902,6 +902,9 @@ pub const SYS_process_mrelease: ::c_long = 448;
902
902
pub const SYS_futex_waitv : :: c_long = 449 ;
903
903
pub const SYS_set_mempolicy_home_node : :: c_long = 450 ;
904
904
905
+ pub const PROT_BTI : :: c_int = 0x10 ;
906
+ pub const PROT_MTE : :: c_int = 0x20 ;
907
+
905
908
extern "C" {
906
909
pub fn sysctl (
907
910
name : * mut :: c_int ,
You can’t perform that action at this time.
0 commit comments