From f782201adf96878141d6e9abe064a896ec11463b Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Fri, 17 May 2013 22:22:19 +0000 Subject: [PATCH] Update PTRACE_O_* constants * process.c (ptrace_setoptions_flags): Sync with Linux 3.9. --- process.c | 6 ++++++ 1 file changed, 6 insertions(+) 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 }, }; -- 2.40.0