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 @@ -1001,11 +1001,6 @@ pub const GENL_ID_PMCRAID: c_int = crate::NLMSG_MIN_TYPE + 2;
1001
1001
1002
1002
pub const ELFOSABI_ARM_AEABI : u8 = 64 ;
1003
1003
1004
- // linux/sched.h
1005
- pub const CLONE_NEWTIME : c_int = 0x80 ;
1006
- pub const CLONE_CLEAR_SIGHAND : c_ulonglong = 0x100000000 ;
1007
- pub const CLONE_INTO_CGROUP : c_ulonglong = 0x200000000 ;
1008
-
1009
1004
// linux/keyctl.h
1010
1005
pub const KEYCTL_DH_COMPUTE : u32 = 23 ;
1011
1006
pub const KEYCTL_PKEY_QUERY : u32 = 24 ;
Original file line number Diff line number Diff line change @@ -5864,6 +5864,10 @@ pub const SCHED_FLAG_KEEP_PARAMS: c_int = 0x10;
5864
5864
pub const SCHED_FLAG_UTIL_CLAMP_MIN : c_int = 0x20 ;
5865
5865
pub const SCHED_FLAG_UTIL_CLAMP_MAX : c_int = 0x40 ;
5866
5866
5867
+ pub const CLONE_NEWTIME : c_int = 0x80 ;
5868
+ pub const CLONE_CLEAR_SIGHAND : c_ulonglong = 0x100000000 ;
5869
+ pub const CLONE_INTO_CGROUP : c_ulonglong = 0x200000000 ;
5870
+
5867
5871
// linux/if_xdp.h
5868
5872
pub const XDP_SHARED_UMEM : crate :: __u16 = 1 << 0 ;
5869
5873
pub const XDP_COPY : crate :: __u16 = 1 << 1 ;
You can’t perform that action at this time.
0 commit comments