Decode recently added flags.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2017-06-12 20:42:16 +00:00
parent 56060a373e
commit b275edf753

View File

@ -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;