author | Szabolcs Nagy <nsz@port70.net> | 2018年04月28日 16:23:23 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018年06月19日 13:25:33 -0400 |
commit | 0f7aa600f75205af243a67394fbb4fe41b5f679a (patch) | |
tree | 4f9c4f327d323f92a86ab33ebfabf675773d460f /include/sys/ptrace.h | |
parent | 3a81cbe64320795d69f11fd2300947d2b56b2e17 (diff) | |
download | musl-0f7aa600f75205af243a67394fbb4fe41b5f679a.tar.gz |
-rw-r--r-- | include/sys/ptrace.h | 8 |
diff --git a/include/sys/ptrace.h b/include/sys/ptrace.h index d9d45408..f501ff08 100644 --- a/include/sys/ptrace.h +++ b/include/sys/ptrace.h @@ -40,6 +40,7 @@ extern "C" { #define PTRACE_GETSIGMASK 0x420a #define PTRACE_SETSIGMASK 0x420b #define PTRACE_SECCOMP_GET_FILTER 0x420c +#define PTRACE_SECCOMP_GET_METADATA 0x420d #define PT_READ_I PTRACE_PEEKTEXT #define PT_READ_D PTRACE_PEEKDATA @@ -86,12 +87,17 @@ extern "C" { #define PTRACE_PEEKSIGINFO_SHARED 1 -struct ptrace_peeksiginfo_args { +struct __ptrace_peeksiginfo_args { uint64_t off; uint32_t flags; int32_t nr; }; +struct __ptrace_seccomp_metadata { + uint64_t filter_off; + uint64_t flags; +}; + long ptrace(int, ...); #ifdef __cplusplus |