svn commit: r288405 - head/usr.bin/truss

John Baldwin jhb at FreeBSD.org
Tue Sep 29 23:54:27 UTC 2015


Author: jhb
Date: Tue Sep 29 23:54:26 2015
New Revision: 288405
URL: https://svnweb.freebsd.org/changeset/base/288405

Log:
  Decode recently added procctl(2) operations.

Modified:
  head/usr.bin/truss/syscalls.c

Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c	Tue Sep 29 22:33:26 2015	(r288404)
+++ head/usr.bin/truss/syscalls.c	Tue Sep 29 23:54:26 2015	(r288405)
@@ -534,7 +534,9 @@ static struct xlat idtype_arg[] = {
 };
 
 static struct xlat procctl_arg[] = {
-	X(PROC_SPROTECT) XEND
+	X(PROC_SPROTECT) X(PROC_REAP_ACQUIRE) X(PROC_REAP_RELEASE)
+	X(PROC_REAP_STATUS) X(PROC_REAP_GETPIDS) X(PROC_REAP_KILL)
+	X(PROC_TRACE_CTL) X(PROC_TRACE_STATUS) XEND
 };
 
 static struct xlat umtx_ops[] = {


More information about the svn-src-all mailing list