diff options
author | jhb <jhb@FreeBSD.org> | 2015-09-29 23:54:26 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2015-09-29 23:54:26 +0000 |
commit | 1e306b6ab49772d000f759e109256d68886a2c60 (patch) | |
tree | b9f164bab1e904fee30b0bfee4a1f0ede1f6c731 /usr.bin/truss | |
parent | 49fa77915cd9216082d882aa841865d30a67d898 (diff) | |
download | FreeBSD-src-1e306b6ab49772d000f759e109256d68886a2c60.zip FreeBSD-src-1e306b6ab49772d000f759e109256d68886a2c60.tar.gz |
Decode recently added procctl(2) operations.
Diffstat (limited to 'usr.bin/truss')
-rw-r--r-- | usr.bin/truss/syscalls.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c index fac47f4..917421b 100644 --- a/usr.bin/truss/syscalls.c +++ b/usr.bin/truss/syscalls.c @@ -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[] = { |