svn commit: r334899 - head/usr.bin/top

Eitan Adler eadler at FreeBSD.org
Sat Jun 9 22:30:11 UTC 2018


Author: eadler
Date: Sat Jun  9 22:30:10 2018
New Revision: 334899
URL: https://svnweb.freebsd.org/changeset/base/334899

Log:
  top(1): implement additional missing long options

Modified:
  head/usr.bin/top/top.c

Modified: head/usr.bin/top/top.c
==============================================================================
--- head/usr.bin/top/top.c	Sat Jun  9 21:40:33 2018	(r334898)
+++ head/usr.bin/top/top.c	Sat Jun  9 22:30:10 2018	(r334899)
@@ -87,12 +87,13 @@ static void (*d_process)(int line, char *thisline) = i
 
 static void reset_display(void);
 
-
 static const struct option longopts[] = {
     { "cpu-display-mode", no_argument, NULL, 'C' }, /* differs from orignal */
     /* D reserved */
     { "thread", no_argument, NULL, 'H' },
     { "idle-procs", no_argument, NULL, 'I' },
+	{ "jail", required_argument, NULL, 'J' },
+	{ "per-cpu", no_argument, NULL, 'P' },
     { "system-procs", no_argument, NULL, 'S' },
     { "thread-id", no_argument, NULL, 'T' }, /* differs from orignal */
     { "user", required_argument, NULL, 'U' },
@@ -111,6 +112,7 @@ static const struct option longopts[] = {
     { "threads", no_argument, NULL, 't' },
     { "uids", no_argument, NULL, 'u' },
     { "version", no_argument, NULL, 'v' },
+	{ "swap", no_argument, NULL, 'w' },
 	{ "system-idle-procs", no_argument, NULL, 'z' }
 };
 


More information about the svn-src-all mailing list