File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ BPF_FS_MAGIC
31
31
BTRFS_SUPER_MAGIC
32
32
CGROUP2_SUPER_MAGIC
33
33
CGROUP_SUPER_MAGIC
34
- CLONE_CLEAR_SIGHAND
35
- CLONE_INTO_CGROUP
36
- CLONE_NEWTIME
37
34
CODA_SUPER_MAGIC
38
35
CRAMFS_MAGIC
39
36
DEAD_PROCESS
Original file line number Diff line number Diff line change @@ -273,15 +273,18 @@ CLOCK_TAI
273
273
CLOCK_THREAD_CPUTIME_ID
274
274
CLONE_CHILD_CLEARTID
275
275
CLONE_CHILD_SETTID
276
+ CLONE_CLEAR_SIGHAND
276
277
CLONE_DETACHED
277
278
CLONE_FILES
278
279
CLONE_FS
280
+ CLONE_INTO_CGROUP
279
281
CLONE_IO
280
282
CLONE_NEWCGROUP
281
283
CLONE_NEWIPC
282
284
CLONE_NEWNET
283
285
CLONE_NEWNS
284
286
CLONE_NEWPID
287
+ CLONE_NEWTIME
285
288
CLONE_NEWUSER
286
289
CLONE_NEWUTS
287
290
CLONE_PARENT
Original file line number Diff line number Diff line change @@ -977,11 +977,6 @@ pub const GENL_ID_PMCRAID: c_int = crate::NLMSG_MIN_TYPE + 2;
977
977
978
978
pub const ELFOSABI_ARM_AEABI : u8 = 64 ;
979
979
980
- // linux/sched.h
981
- pub const CLONE_NEWTIME : c_int = 0x80 ;
982
- pub const CLONE_CLEAR_SIGHAND : c_ulonglong = 0x100000000 ;
983
- pub const CLONE_INTO_CGROUP : c_ulonglong = 0x200000000 ;
984
-
985
980
// linux/keyctl.h
986
981
pub const KEYCTL_DH_COMPUTE : u32 = 23 ;
987
982
pub const KEYCTL_PKEY_QUERY : u32 = 24 ;
Original file line number Diff line number Diff line change @@ -5696,6 +5696,10 @@ pub const SCHED_FLAG_KEEP_PARAMS: c_int = 0x10;
5696
5696
pub const SCHED_FLAG_UTIL_CLAMP_MIN : c_int = 0x20 ;
5697
5697
pub const SCHED_FLAG_UTIL_CLAMP_MAX : c_int = 0x40 ;
5698
5698
5699
+ pub const CLONE_NEWTIME : c_int = 0x80 ;
5700
+ pub const CLONE_CLEAR_SIGHAND : c_ulonglong = 0x100000000 ;
5701
+ pub const CLONE_INTO_CGROUP : c_ulonglong = 0x200000000 ;
5702
+
5699
5703
// linux/if_xdp.h
5700
5704
pub const XDP_SHARED_UMEM : crate :: __u16 = 1 << 0 ;
5701
5705
pub const XDP_COPY : crate :: __u16 = 1 << 1 ;
You can’t perform that action at this time.
0 commit comments