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
18901890PTRACE_POKEDATA
18911891PTRACE_POKETEXT
18921892PTRACE_POKEUSER
1893+ PTRACE_SECCOMP_GET_METADATA
18931894PTRACE_SETOPTIONS
18941895PTRACE_SETSIGINFO
18951896PTRACE_SINGLESTEP
@@ -3502,6 +3503,7 @@ sched_setparam
35023503sched_setscheduler
35033504sched_yield
35043505seccomp_data
3506+ seccomp_metadata
35053507seekdir
35063508select
35073509sem_close
Original file line number Diff line number Diff line change @@ -350,6 +350,11 @@ s! {
350350 pub args: [ :: __u64; 6 ] ,
351351 }
352352
353+ pub struct seccomp_metadata {
354+ pub filter_off: :: __u64,
355+ pub flags: :: __u64,
356+ }
357+
353358 pub struct ptrace_peeksiginfo_args {
354359 pub off: :: __u64,
355360 pub flags: :: __u32,
@@ -1522,6 +1527,7 @@ pub const PTRACE_GETSIGINFO: ::c_int = 0x4202;
15221527pub const PTRACE_SETSIGINFO : :: c_int = 0x4203 ;
15231528pub const PTRACE_GETREGSET : :: c_int = 0x4204 ;
15241529pub const PTRACE_SETREGSET : :: c_int = 0x4205 ;
1530+ pub const PTRACE_SECCOMP_GET_METADATA : :: c_int = 0x420d ;
15251531
15261532pub const PTRACE_EVENT_STOP : :: c_int = 128 ;
15271533
You can’t perform that action at this time.
0 commit comments