From: Dmitry V. Levin Date: Fri, 17 May 2013 22:22:19 +0000 (+0000) Subject: Update PTRACE_O_* constants X-Git-Tag: v4.8~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f782201adf96878141d6e9abe064a896ec11463b;p=strace Update PTRACE_O_* constants * process.c (ptrace_setoptions_flags): Sync with Linux 3.9. --- diff --git a/process.c b/process.c index 2c619e7f..799a314d 100644 --- a/process.c +++ b/process.c @@ -1322,6 +1322,12 @@ static const struct xlat ptrace_setoptions_flags[] = { # endif # 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 }, };