From b275edf75318efbbc87f43f64813d2b5c39f1bd5 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Mon, 12 Jun 2017 20:42:16 +0000 Subject: [PATCH] Decode recently added flags. Sponsored by: The FreeBSD Foundation MFC after: 3 days --- tools/test/ptrace/scescx.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/test/ptrace/scescx.c b/tools/test/ptrace/scescx.c index cdd8b601494..17a60fd6860 100644 --- a/tools/test/ptrace/scescx.c +++ b/tools/test/ptrace/scescx.c @@ -97,6 +97,11 @@ decode_pl_flags(struct ptrace_lwpinfo *lwpinfo) { PL_FLAG_EXEC, "EXEC" }, { PL_FLAG_SI, "SI" }, { PL_FLAG_FORKED, "FORKED" }, + { PL_FLAG_CHILD, "CHILD" }, + { PL_FLAG_BORN, "LWPBORN" }, + { PL_FLAG_EXITED, "LWPEXITED" }, + { PL_FLAG_VFORKED, "VFORKED" }, + { PL_FLAG_VFORK_DONE, "VFORKDONE" }, }; char de[32]; unsigned first, flags, i;