File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree 3 files changed +7
-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_NEWTIME" | "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 @@ -1124,6 +1124,9 @@ pub const REG_STARTEND: ::c_int = 4;
11241124pub const REG_EEND : :: c_int = 14 ;
11251125pub const REG_ESIZE : :: c_int = 15 ;
11261126pub const REG_ERPAREN : :: c_int = 16 ;
1127+ pub const CLONE_NEWTIME : :: c_int = 0x80 ;
1128+ pub const CLONE_CLEAR_SIGHAND : :: c_longlong = 0x100000000 ;
1129+ pub const CLONE_INTO_CGROUP : :: c_longlong = 0x200000000 ;
11271130
11281131extern "C" {
11291132 pub fn fgetspent_r (
You can’t perform that action at this time.
0 commit comments