svn commit: r215421 - stable/8/contrib/top

Sergey Kandaurov pluknet at FreeBSD.org
Wed Nov 17 09:48:19 UTC 2010


Author: pluknet
Date: Wed Nov 17 09:48:18 2010
New Revision: 215421
URL: http://svn.freebsd.org/changeset/base/215421

Log:
  MFC r215186:
  
  Add 'jid' as a possible sort order to the help screen.
  
  PR:		bin/150992
  Submitted by:	Frederic Culot <frederic at culot dot org>
  Approved by:	avg (mentor)

Modified:
  stable/8/contrib/top/commands.c
Directory Properties:
  stable/8/contrib/top/   (props changed)
  stable/8/contrib/top/install-sh   (props changed)

Modified: stable/8/contrib/top/commands.c
==============================================================================
--- stable/8/contrib/top/commands.c	Wed Nov 17 09:32:39 2010	(r215420)
+++ stable/8/contrib/top/commands.c	Wed Nov 17 09:48:18 2010	(r215421)
@@ -80,10 +80,12 @@ n or #  - change number of processes to 
 #ifdef ORDER
 	if (displaymode == DISP_CPU)
 		fputs("\
-o       - specify sort order (pri, size, res, cpu, time, threads)\n", stdout);
+o       - specify sort order (pri, size, res, cpu, time, threads, jid)\n",
+	    stdout);
 	else
 		fputs("\
-o       - specify sort order (vcsw, ivcsw, read, write, fault, total)\n", stdout);
+o       - specify sort order (vcsw, ivcsw, read, write, fault, total, jid)\n",
+	    stdout);
 #endif
 	fputs("\
 r       - renice a process\n\


More information about the svn-src-stable mailing list