File tree Expand file tree Collapse file tree 9 files changed +7
-38
lines changed Expand file tree Collapse file tree 9 files changed +7
-38
lines changed Original file line number Diff line number Diff line change @@ -236,32 +236,8 @@ CLOCK_REALTIME_ALARM
236236CLOCK_REALTIME_COARSE
237237CLOCK_TAI
238238CLOCK_THREAD_CPUTIME_ID
239- CLONE_CHILD_CLEARTID
240- CLONE_CHILD_SETTID
241239CLONE_CLEAR_SIGHAND
242- CLONE_DETACHED
243- CLONE_FILES
244- CLONE_FS
245240CLONE_INTO_CGROUP
246- CLONE_IO
247- CLONE_NEWCGROUP
248- CLONE_NEWIPC
249- CLONE_NEWNET
250- CLONE_NEWNS
251- CLONE_NEWPID
252- CLONE_NEWUSER
253- CLONE_NEWUTS
254- CLONE_PARENT
255- CLONE_PARENT_SETTID
256- CLONE_PIDFD
257- CLONE_PTRACE
258- CLONE_SETTLS
259- CLONE_SIGHAND
260- CLONE_SYSVSEM
261- CLONE_THREAD
262- CLONE_UNTRACED
263- CLONE_VFORK
264- CLONE_VM
265241CMSG_DATA
266242CMSG_FIRSTHDR
267243CMSG_LEN
Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ BPF_FS_MAGIC
3131BTRFS_SUPER_MAGIC
3232CGROUP2_SUPER_MAGIC
3333CGROUP_SUPER_MAGIC
34- CLONE_CLEAR_SIGHAND
35- CLONE_INTO_CGROUP
36- CLONE_NEWTIME
3734CODA_SUPER_MAGIC
3835CRAMFS_MAGIC
3936DEAD_PROCESS
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ AIO_ALLDONE
66AIO_CANCELED
77AIO_NOTCANCELED
88BOOT_TIME
9- CLONE_NEWTIME
109DEAD_PROCESS
1110EMPTY
1211Elf32_Chdr
Original file line number Diff line number Diff line change @@ -273,15 +273,18 @@ CLOCK_TAI
273273CLOCK_THREAD_CPUTIME_ID
274274CLONE_CHILD_CLEARTID
275275CLONE_CHILD_SETTID
276+ CLONE_CLEAR_SIGHAND
276277CLONE_DETACHED
277278CLONE_FILES
278279CLONE_FS
280+ CLONE_INTO_CGROUP
279281CLONE_IO
280282CLONE_NEWCGROUP
281283CLONE_NEWIPC
282284CLONE_NEWNET
283285CLONE_NEWNS
284286CLONE_NEWPID
287+ CLONE_NEWTIME
285288CLONE_NEWUSER
286289CLONE_NEWUTS
287290CLONE_PARENT
Original file line number Diff line number Diff line change @@ -2883,7 +2883,6 @@ pub const SCHED_DEADLINE: c_int = 6;
28832883
28842884pub const SCHED_RESET_ON_FORK : c_int = 0x40000000 ;
28852885
2886- pub const CLONE_PIDFD : c_int = 0x1000 ;
28872886pub const CLONE_CLEAR_SIGHAND : c_ulonglong = 0x100000000 ;
28882887pub const CLONE_INTO_CGROUP : c_ulonglong = 0x200000000 ;
28892888
Original file line number Diff line number Diff line change @@ -886,12 +886,6 @@ pub const GENL_ID_PMCRAID: c_int = crate::NLMSG_MIN_TYPE + 2;
886886
887887pub const ELFOSABI_ARM_AEABI : u8 = 64 ;
888888
889- // linux/sched.h
890- pub const CLONE_NEWTIME : c_int = 0x80 ;
891- // DIFF(main): changed to `c_ulonglong` in e9abac9ac2
892- pub const CLONE_CLEAR_SIGHAND : c_int = 0x100000000 ;
893- pub const CLONE_INTO_CGROUP : c_int = 0x200000000 ;
894-
895889// linux/keyctl.h
896890pub const KEYCTL_DH_COMPUTE : u32 = 23 ;
897891pub const KEYCTL_PKEY_QUERY : u32 = 24 ;
Original file line number Diff line number Diff line change @@ -5665,7 +5665,8 @@ pub const SCHED_DEADLINE: c_int = 6;
56655665
56665666pub const SCHED_RESET_ON_FORK : c_int = 0x40000000 ;
56675667
5668- pub const CLONE_PIDFD : c_int = 0x1000 ;
5668+ pub const CLONE_CLEAR_SIGHAND : c_ulonglong = 0x100000000 ;
5669+ pub const CLONE_INTO_CGROUP : c_ulonglong = 0x200000000 ;
56695670
56705671pub const SCHED_FLAG_RESET_ON_FORK : c_int = 0x01 ;
56715672pub const SCHED_FLAG_RECLAIM : c_int = 0x02 ;
Original file line number Diff line number Diff line change @@ -834,8 +834,6 @@ pub const MAXTC: c_long = 6;
834834pub const _CS_V6_ENV: c_int = 1148 ;
835835pub const _CS_V7_ENV: c_int = 1149 ;
836836
837- pub const CLONE_NEWTIME : c_int = 0x80 ;
838-
839837pub const UT_HOSTSIZE : usize = 256 ;
840838pub const UT_LINESIZE : usize = 32 ;
841839pub const UT_NAMESIZE : usize = 32 ;
Original file line number Diff line number Diff line change @@ -1164,10 +1164,12 @@ pub const ONLRET: crate::tcflag_t = 0o000040;
11641164pub const OFILL : crate :: tcflag_t = 0o000100 ;
11651165pub const OFDEL : crate :: tcflag_t = 0o000200 ;
11661166
1167+ pub const CLONE_NEWTIME : c_int = 0x80 ;
11671168pub const CLONE_VM : c_int = 0x100 ;
11681169pub const CLONE_FS : c_int = 0x200 ;
11691170pub const CLONE_FILES : c_int = 0x400 ;
11701171pub const CLONE_SIGHAND : c_int = 0x800 ;
1172+ pub const CLONE_PIDFD : c_int = 0x1000 ;
11711173pub const CLONE_PTRACE : c_int = 0x2000 ;
11721174pub const CLONE_VFORK : c_int = 0x4000 ;
11731175pub const CLONE_PARENT : c_int = 0x8000 ;
You can’t perform that action at this time.
0 commit comments