File tree 6 files changed +12
-1
lines changed
6 files changed +12
-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 @@ -263,6 +263,7 @@ CLONE_NEWIPC
263
263
CLONE_NEWNET
264
264
CLONE_NEWNS
265
265
CLONE_NEWPID
266
+ CLONE_NEWTIME
266
267
CLONE_NEWUSER
267
268
CLONE_NEWUTS
268
269
CLONE_PARENT
Original file line number Diff line number Diff line change @@ -2716,6 +2716,8 @@ pub const SCHED_DEADLINE: ::c_int = 6;
2716
2716
pub const SCHED_RESET_ON_FORK : :: c_int = 0x40000000 ;
2717
2717
2718
2718
pub const CLONE_PIDFD : :: c_int = 0x1000 ;
2719
+ pub const CLONE_CLEAR_SIGHAND : :: c_longlong = 0x100000000 ;
2720
+ pub const CLONE_INTO_CGROUP : :: c_longlong = 0x200000000 ;
2719
2721
2720
2722
// linux/mempolicy.h
2721
2723
pub const MPOL_DEFAULT : :: c_int = 0 ;
Original file line number Diff line number Diff line change @@ -1117,6 +1117,8 @@ 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_CLEAR_SIGHAND : :: c_longlong = 0x100000000 ;
1121
+ pub const CLONE_INTO_CGROUP : :: c_longlong = 0x200000000 ;
1120
1122
1121
1123
extern "C" {
1122
1124
pub fn fgetspent_r (
Original file line number Diff line number Diff line change @@ -1114,6 +1114,7 @@ pub const ONLRET: ::tcflag_t = 0o000040;
1114
1114
pub const OFILL : :: tcflag_t = 0o000100 ;
1115
1115
pub const OFDEL : :: tcflag_t = 0o000200 ;
1116
1116
1117
+ pub const CLONE_NEWTIME : :: c_int = 0x80 ;
1117
1118
pub const CLONE_VM : :: c_int = 0x100 ;
1118
1119
pub const CLONE_FS : :: c_int = 0x200 ;
1119
1120
pub const CLONE_FILES : :: c_int = 0x400 ;
You can’t perform that action at this time.
0 commit comments