File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/unix/linux_like/android Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1890,6 +1890,7 @@ PTRACE_PEEKUSER
1890
1890
PTRACE_POKEDATA
1891
1891
PTRACE_POKETEXT
1892
1892
PTRACE_POKEUSER
1893
+ PTRACE_SECCOMP_GET_METADATA
1893
1894
PTRACE_SETOPTIONS
1894
1895
PTRACE_SETSIGINFO
1895
1896
PTRACE_SINGLESTEP
@@ -3502,6 +3503,7 @@ sched_setparam
3502
3503
sched_setscheduler
3503
3504
sched_yield
3504
3505
seccomp_data
3506
+ seccomp_metadata
3505
3507
seekdir
3506
3508
select
3507
3509
sem_close
Original file line number Diff line number Diff line change @@ -350,6 +350,11 @@ s! {
350
350
pub args: [ :: __u64; 6 ] ,
351
351
}
352
352
353
+ pub struct seccomp_metadata {
354
+ pub filter_off: :: __u64,
355
+ pub flags: :: __u64,
356
+ }
357
+
353
358
pub struct ptrace_peeksiginfo_args {
354
359
pub off: :: __u64,
355
360
pub flags: :: __u32,
@@ -1522,6 +1527,7 @@ pub const PTRACE_GETSIGINFO: ::c_int = 0x4202;
1522
1527
pub const PTRACE_SETSIGINFO : :: c_int = 0x4203 ;
1523
1528
pub const PTRACE_GETREGSET : :: c_int = 0x4204 ;
1524
1529
pub const PTRACE_SETREGSET : :: c_int = 0x4205 ;
1530
+ pub const PTRACE_SECCOMP_GET_METADATA : :: c_int = 0x420d ;
1525
1531
1526
1532
pub const PTRACE_EVENT_STOP : :: c_int = 128 ;
1527
1533
You can’t perform that action at this time.
0 commit comments