File tree 5 files changed +13
-1
lines changed
5 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -206,15 +206,18 @@ CLOCK_TAI
206
206
CLOCK_THREAD_CPUTIME_ID
207
207
CLONE_CHILD_CLEARTID
208
208
CLONE_CHILD_SETTID
209
+ CLONE_CLEAR_SIGHAND
209
210
CLONE_DETACHED
210
211
CLONE_FILES
211
212
CLONE_FS
213
+ CLONE_INTO_CGROUP
212
214
CLONE_IO
213
215
CLONE_NEWCGROUP
214
216
CLONE_NEWIPC
215
217
CLONE_NEWNET
216
218
CLONE_NEWNS
217
219
CLONE_NEWPID
220
+ CLONE_NEWTIME
218
221
CLONE_NEWUSER
219
222
CLONE_NEWUTS
220
223
CLONE_PARENT
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ 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
34
36
CODA_SUPER_MAGIC
35
37
CRAMFS_MAGIC
36
38
DCCP_SERVICE_LIST_MAX_LEN
@@ -660,4 +662,4 @@ strftime
660
662
strptime
661
663
dirname
662
664
posix_basename
663
- gnu_basename
665
+ gnu_basename
Original file line number Diff line number Diff line change @@ -264,6 +264,7 @@ CLONE_NEWIPC
264
264
CLONE_NEWNET
265
265
CLONE_NEWNS
266
266
CLONE_NEWPID
267
+ CLONE_NEWTIME
267
268
CLONE_NEWUSER
268
269
CLONE_NEWUTS
269
270
CLONE_PARENT
Original file line number Diff line number Diff line change @@ -2715,7 +2715,10 @@ pub const SCHED_DEADLINE: ::c_int = 6;
2715
2715
2716
2716
pub const SCHED_RESET_ON_FORK : :: c_int = 0x40000000 ;
2717
2717
2718
+ pub const CLONE_NEWTIME : :: c_int = 0x80 ;
2718
2719
pub const CLONE_PIDFD : :: c_int = 0x1000 ;
2720
+ pub const CLONE_CLEAR_SIGHAND : :: c_longlong = 0x100000000 ;
2721
+ pub const CLONE_INTO_CGROUP : :: c_longlong = 0x200000000 ;
2719
2722
2720
2723
// linux/mempolicy.h
2721
2724
pub const MPOL_DEFAULT : :: c_int = 0 ;
Original file line number Diff line number Diff line change @@ -1117,6 +1117,9 @@ pub const REG_STARTEND: ::c_int = 4;
1117
1117
pub const REG_EEND : :: c_int = 14 ;
1118
1118
pub const REG_ESIZE : :: c_int = 15 ;
1119
1119
pub const REG_ERPAREN : :: c_int = 16 ;
1120
+ pub const CLONE_NEWTIME : :: c_int = 0x80 ;
1121
+ pub const CLONE_CLEAR_SIGHAND : :: c_longlong = 0x100000000 ;
1122
+ pub const CLONE_INTO_CGROUP : :: c_longlong = 0x200000000 ;
1120
1123
1121
1124
extern "C" {
1122
1125
pub fn fgetspent_r (
You can’t perform that action at this time.
0 commit comments