diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-01-11 01:58:54 +0100 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-01-12 19:42:39 +0100 |
commit | 20103616635a14441c5e04477e7913f6f9095735 (patch) | |
tree | 53a7fbe18159b6b533ec8bf5bc87fdb5ea7e9340 | |
parent | 119645b6bb6578cc28718ab427e4b23860d67161 (diff) | |
download | musl-20103616635a14441c5e04477e7913f6f9095735.tar.gz musl-20103616635a14441c5e04477e7913f6f9095735.tar.bz2 musl-20103616635a14441c5e04477e7913f6f9095735.tar.xz musl-20103616635a14441c5e04477e7913f6f9095735.zip |
add missing ptrace requests and options to sys/ptrace.h
-rw-r--r-- | include/sys/ptrace.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/sys/ptrace.h b/include/sys/ptrace.h index d7e8c76e..21d4ca3a 100644 --- a/include/sys/ptrace.h +++ b/include/sys/ptrace.h @@ -29,6 +29,11 @@ extern "C" { #define PTRACE_GETEVENTMSG 0x4201 #define PTRACE_GETSIGINFO 0x4202 #define PTRACE_SETSIGINFO 0x4203 +#define PTRACE_GETREGSET 0x4204 +#define PTRACE_SETREGSET 0x4205 +#define PTRACE_SEIZE 0x4206 +#define PTRACE_INTERRUPT 0x4207 +#define PTRACE_LISTEN 0x4208 #define PT_READ_I PTRACE_PEEKTEXT #define PT_READ_D PTRACE_PEEKDATA @@ -60,7 +65,9 @@ extern "C" { #define PTRACE_O_TRACEEXEC 0x00000010 #define PTRACE_O_TRACEVFORKDONE 0x00000020 #define PTRACE_O_TRACEEXIT 0x00000040 -#define PTRACE_O_MASK 0x0000007f +#define PTRACE_O_TRACESECCOMP 0x00000080 +#define PTRACE_O_EXITKILL 0x00100000 +#define PTRACE_O_MASK 0x001000ff #define PTRACE_EVENT_FORK 1 #define PTRACE_EVENT_VFORK 2 @@ -68,6 +75,7 @@ extern "C" { #define PTRACE_EVENT_EXEC 4 #define PTRACE_EVENT_VFORK_DONE 5 #define PTRACE_EVENT_EXIT 6 +#define PTRACE_EVENT_SECCOMP 7 long ptrace(int, ...); |