svn commit: r266288 - stable/9/usr.bin/top
Bryan Drewery
bdrewery at FreeBSD.org
Sat May 17 03:27:32 UTC 2014
Author: bdrewery
Date: Sat May 17 03:27:31 2014
New Revision: 266288
URL: http://svnweb.freebsd.org/changeset/base/266288
Log:
MFC r251630:
Bump the CPU/WCPU column width by one so that it fits values from 100% up to
999.99% CPU.
Modified:
stable/9/usr.bin/top/machine.c
Directory Properties:
stable/9/usr.bin/top/ (props changed)
Modified: stable/9/usr.bin/top/machine.c
==============================================================================
--- stable/9/usr.bin/top/machine.c Sat May 17 03:23:45 2014 (r266287)
+++ stable/9/usr.bin/top/machine.c Sat May 17 03:27:31 2014 (r266288)
@@ -107,20 +107,20 @@ static char io_header[] =
"%5d%s %-*.*s %6ld %6ld %6ld %6ld %6ld %6ld %6.2f%% %.*s"
static char smp_header_thr[] =
- " PID%s %-*.*s THR PRI NICE SIZE RES STATE C TIME %6s COMMAND";
+ " PID%s %-*.*s THR PRI NICE SIZE RES STATE C TIME %7s COMMAND";
static char smp_header[] =
- " PID%s %-*.*s " "PRI NICE SIZE RES STATE C TIME %6s COMMAND";
+ " PID%s %-*.*s " "PRI NICE SIZE RES STATE C TIME %7s COMMAND";
#define smp_Proc_format \
- "%5d%s %-*.*s %s%3d %4s%7s %6s %-6.6s %2d%7s %5.2f%% %.*s"
+ "%5d%s %-*.*s %s%3d %4s%7s %6s %-6.6s %2d%7s %6.2f%% %.*s"
static char up_header_thr[] =
- " PID%s %-*.*s THR PRI NICE SIZE RES STATE TIME %6s COMMAND";
+ " PID%s %-*.*s THR PRI NICE SIZE RES STATE TIME %7s COMMAND";
static char up_header[] =
- " PID%s %-*.*s " "PRI NICE SIZE RES STATE TIME %6s COMMAND";
+ " PID%s %-*.*s " "PRI NICE SIZE RES STATE TIME %7s COMMAND";
#define up_Proc_format \
- "%5d%s %-*.*s %s%3d %4s%7s %6s %-6.6s%.0d%7s %5.2f%% %.*s"
+ "%5d%s %-*.*s %s%3d %4s%7s %6s %-6.6s%.0d%7s %6.2f%% %.*s"
/* process state names for the "STATE" column of the display */
More information about the svn-src-stable-9
mailing list