From 6b031ddd14b2eef142eed86969da0e3d0db100a1 Mon Sep 17 00:00:00 2001 From: "George V. Neville-Neil" Date: Sun, 8 Mar 2015 21:51:37 +0000 Subject: [PATCH] Summary: Remove the need for `mpid which is Illumos/Solaris specific. --- cddl/contrib/dtracetoolkit/Proc/pidpersec.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cddl/contrib/dtracetoolkit/Proc/pidpersec.d b/cddl/contrib/dtracetoolkit/Proc/pidpersec.d index 71080b9e7527..ab57b66ee581 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; }