Summary: Remove the need for `mpid which is Illumos/Solaris specific.

This commit is contained in:
George V. Neville-Neil 2015-03-08 21:51:37 +00:00
parent 5126a47396
commit 6b031ddd14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279789

View File

@ -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;
}