summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2013-05-17 22:22:19 +0000
committerDmitry V. Levin <ldv@altlinux.org>2013-05-17 22:22:19 +0000
commitf782201adf96878141d6e9abe064a896ec11463b (patch)
treeddb251e3f7b4c5cd46cc1f4af4d8ceba268ba658 /process.c
parentea0d2a60b1c00b41696ef223df2377809b9e1fa9 (diff)
downloadstrace-f782201adf96878141d6e9abe064a896ec11463b.tar.gz
strace-f782201adf96878141d6e9abe064a896ec11463b.tar.bz2
strace-f782201adf96878141d6e9abe064a896ec11463b.tar.xz
Update PTRACE_O_* constants
* process.c (ptrace_setoptions_flags): Sync with Linux 3.9.
Diffstat (limited to 'process.c')
-rw-r--r--process.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/process.c b/process.c
index 2c619e7..799a314 100644
--- a/process.c
+++ b/process.c
@@ -1323,6 +1323,12 @@ static const struct xlat ptrace_setoptions_flags[] = {
# ifdef PTRACE_O_TRACEEXIT
{ PTRACE_O_TRACEEXIT, "PTRACE_O_TRACEEXIT" },
# endif
+# ifdef PTRACE_O_TRACESECCOMP
+ { PTRACE_O_TRACESECCOMP,"PTRACE_O_TRACESECCOMP" },
+# endif
+# ifdef PTRACE_O_EXITKILL
+ { PTRACE_O_EXITKILL, "PTRACE_O_EXITKILL" },
+# endif
{ 0, NULL },
};
#endif /* PTRACE_SETOPTIONS */