svn commit: r196382 - head/contrib/top

John Baldwin jhb at FreeBSD.org
Wed Aug 19 15:17:13 UTC 2009


Author: jhb
Date: Wed Aug 19 15:17:13 2009
New Revision: 196382
URL: http://svn.freebsd.org/changeset/base/196382

Log:
  Explicitly line up the CPU state labels with the calculated starting column
  that takes into account the width of the largest CPU ID.  On systems with
  > 10 CPUs the labels for the first 10 CPUs were not lined up properly
  otherwise.
  
  Approved by:	re (kib)
  MFC after:	1 week

Modified:
  head/contrib/top/display.c

Modified: head/contrib/top/display.c
==============================================================================
--- head/contrib/top/display.c	Wed Aug 19 14:48:59 2009	(r196381)
+++ head/contrib/top/display.c	Wed Aug 19 15:17:13 2009	(r196382)
@@ -452,6 +452,7 @@ for (cpu = 0; cpu < num_cpus; cpu++) {
     lastline++;
 
     /* now walk thru the names and print the line */
+    Move_to(cpustates_column, y_cpustates + cpu);
     while ((thisname = *names++) != NULL)
     {
 	if (*thisname != '\0')
@@ -543,6 +544,7 @@ for (cpu = 0; cpu < num_cpus; cpu++) {
 	printf("\nCPU %d: ", cpu);
     lastline++;
 
+    Move_to(cpustates_column, y_cpustates + cpu);
     while ((thisname = *names++) != NULL)
     {
 	if (*thisname != '\0')


More information about the svn-src-head mailing list