diff options
author | gnn <gnn@FreeBSD.org> | 2015-03-08 21:51:37 +0000 |
---|---|---|
committer | gnn <gnn@FreeBSD.org> | 2015-03-08 21:51:37 +0000 |
commit | 73a716f42de3e217d697b2e8299dcfb61be4cdbb (patch) | |
tree | 23310e8829b192bd1c91253c5f1480c1c655f140 /cddl | |
parent | ba584965a29bc3b4bbfbf1ed4c3eaf761159721d (diff) | |
download | FreeBSD-src-73a716f42de3e217d697b2e8299dcfb61be4cdbb.zip FreeBSD-src-73a716f42de3e217d697b2e8299dcfb61be4cdbb.tar.gz |
Summary: Remove the need for `mpid which is Illumos/Solaris specific.
Diffstat (limited to 'cddl')
-rwxr-xr-x | cddl/contrib/dtracetoolkit/Proc/pidpersec.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cddl/contrib/dtracetoolkit/Proc/pidpersec.d b/cddl/contrib/dtracetoolkit/Proc/pidpersec.d index 71080b9..ab57b66e 100755 --- a/cddl/contrib/dtracetoolkit/Proc/pidpersec.d +++ b/cddl/contrib/dtracetoolkit/Proc/pidpersec.d @@ -41,7 +41,7 @@ dtrace:::BEGIN { - printf("%-22s %8s %6s\n", "TIME", "LASTPID", "PID/s"); + printf("%-22s %6s\n", "TIME", "PID/s"); pids = 0; } @@ -52,6 +52,6 @@ proc:::exec-success profile:::tick-1sec { - printf("%-22Y %8d %6d\n", walltimestamp, `mpid, pids); + printf("%-22Y %6d\n", walltimestamp, pids); pids = 0; } |