From 4e020c0f4b054a030ce8922906cdc217c4b2faf4 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 21 Jun 2013 16:33:56 +0200 Subject: [PATCH] Show PTRACE_EVENT_STOP correctly in debug output Signed-off-by: Denys Vlasenko --- strace.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/strace.c b/strace.c index ab971b51..f7678313 100644 --- a/strace.c +++ b/strace.c @@ -2029,10 +2029,13 @@ trace(void) [PTRACE_EVENT_VFORK_DONE] = "VFORK_DONE", [PTRACE_EVENT_EXEC] = "EXEC", [PTRACE_EVENT_EXIT] = "EXIT", + /* [PTRACE_EVENT_STOP (=128)] would make biggish array */ }; const char *e; if (event < ARRAY_SIZE(event_names)) e = event_names[event]; + else if (event == PTRACE_EVENT_STOP) + e = "STOP"; else { sprintf(buf, "?? (%u)", event); e = buf; -- 2.40.0