svn commit: r224204 - head/contrib/top

John Baldwin jhb at FreeBSD.org
Mon Jul 18 21:08:15 UTC 2011


Author: jhb
Date: Mon Jul 18 21:08:14 2011
New Revision: 224204
URL: http://svn.freebsd.org/changeset/base/224204

Log:
  Tweak the interactive description of CPU vs WCPU.
  
  PR:		bin/158819
  Submitted by:	arundel
  Approved by:	re (kib)

Modified:
  head/contrib/top/top.c

Modified: head/contrib/top/top.c
==============================================================================
--- head/contrib/top/top.c	Mon Jul 18 21:04:35 2011	(r224203)
+++ head/contrib/top/top.c	Mon Jul 18 21:08:14 2011	(r224204)
@@ -1029,8 +1029,8 @@ restart:
 			    case CMD_wcputog:
 				ps.wcpu = !ps.wcpu;
 				new_message(MT_standout | MT_delayed,
-				    " Displaying %sCPU",
-				    ps.wcpu ? "W" : "");
+				    " Displaying %s CPU",
+				    ps.wcpu ? "weighted" : "raw");
 				header_text = format_header(uname_field);
 				reset_display();
 				putchar('\r');


More information about the svn-src-all mailing list