svn commit: r319976 - stable/11/tools/test/ptrace

Konstantin Belousov kib at FreeBSD.org
Thu Jun 15 15:08:56 UTC 2017


Author: kib
Date: Thu Jun 15 15:08:54 2017
New Revision: 319976
URL: https://svnweb.freebsd.org/changeset/base/319976

Log:
  MFC r319869:
  Decode recently added flags.
  
  Approved by:	re (marius)

Modified:
  stable/11/tools/test/ptrace/scescx.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/tools/test/ptrace/scescx.c
==============================================================================
--- stable/11/tools/test/ptrace/scescx.c	Thu Jun 15 14:34:33 2017	(r319975)
+++ stable/11/tools/test/ptrace/scescx.c	Thu Jun 15 15:08:54 2017	(r319976)
@@ -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;


More information about the svn-src-all mailing list