svn commit: r266322 - head/usr.bin/procstat

John Baldwin jhb at FreeBSD.org
Sat May 17 16:11:06 UTC 2014


Author: jhb
Date: Sat May 17 16:11:06 2014
New Revision: 266322
URL: http://svnweb.freebsd.org/changeset/base/266322

Log:
  Use 'RESOURCE' instead of the more generic 'TYPE' for the resource name
  column header when displaying resource usage.  This more closely matches
  other procstat displays.

Modified:
  head/usr.bin/procstat/procstat_rusage.c

Modified: head/usr.bin/procstat/procstat_rusage.c
==============================================================================
--- head/usr.bin/procstat/procstat_rusage.c	Sat May 17 16:00:25 2014	(r266321)
+++ head/usr.bin/procstat/procstat_rusage.c	Sat May 17 16:11:06 2014	(r266322)
@@ -141,7 +141,8 @@ procstat_rusage(struct procstat *procsta
 		printf("%5s ", "PID");
 		if (Hflag)
 			printf("%6s ", "TID");
-		printf("%-16s %-32s %14s\n", "COMM", "TYPE", "VALUE        ");
+		printf("%-16s %-32s %14s\n", "COMM", "RESOURCE",
+		    "VALUE        ");
 	}
 
 	if (!Hflag) {


More information about the svn-src-all mailing list