File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3841,6 +3841,7 @@ fn test_linux(target: &str) {
38413841 | "MADV_POPULATE_READ"
38423842 | "MADV_POPULATE_WRITE"
38433843 if musl => true ,
3844+ "CLONE_CLEAR_SIGHAND" | "CLONE_INTO_CGROUP" => true ,
38443845
38453846 // kernel 6.1 minimum
38463847 "MADV_COLLAPSE" => true ,
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ BTRFS_SUPER_MAGIC
3232CGROUP2_SUPER_MAGIC
3333CGROUP_SUPER_MAGIC
3434CLONE_NEWTIME
35+ CLONE_CLEAR_SIGHAND
36+ CLONE_INTO_CGROUP
3537CODA_SUPER_MAGIC
3638CRAMFS_MAGIC
3739DEAD_PROCESS
@@ -666,4 +668,4 @@ getmntent_r
666668putpwent
667669putgrent
668670execveat
669- close_range
671+ close_range
Original file line number Diff line number Diff line change @@ -946,6 +946,8 @@ pub const ELFOSABI_ARM_AEABI: u8 = 64;
946946
947947// linux/sched.h
948948pub const CLONE_NEWTIME : :: c_int = 0x80 ;
949+ pub const CLONE_CLEAR_SIGHAND : :: c_int = 0x100000000 ;
950+ pub const CLONE_INTO_CGROUP : :: c_int = 0x200000000 ;
949951
950952// linux/keyctl.h
951953pub const KEYCTL_DH_COMPUTE : u32 = 23 ;
You can’t perform that action at this time.
0 commit comments