Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 May 2017 21:10:01 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r318968 - head/usr.bin/procstat
Message-ID:  <201705262110.v4QLA15h017078@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Fri May 26 21:10:01 2017
New Revision: 318968
URL: https://svnweb.freebsd.org/changeset/base/318968

Log:
  Add missing usage and getopt(3) options
  
  - Add the missing option 'n' to the getopt(3) string
  - Add the missing options 'libxo' and 'N' to the usage message
  - Add the missing options 'M' and 'N' to the man-page
  
  Submitted by:	Keegan Drake H.P. <kdrakehp@zoho.com>
  MFC after:	1 week
  Differential Revision:	https://reviews.freebsd.org/D10915

Modified:
  head/usr.bin/procstat/procstat.1
  head/usr.bin/procstat/procstat.c

Modified: head/usr.bin/procstat/procstat.1
==============================================================================
--- head/usr.bin/procstat/procstat.1	Fri May 26 20:20:40 2017	(r318967)
+++ head/usr.bin/procstat/procstat.1	Fri May 26 21:10:01 2017	(r318968)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd May 11, 2017
+.Dd May 26, 2017
 .Dt PROCSTAT 1
 .Os
 .Sh NAME
@@ -35,6 +35,8 @@
 .Nm
 .Op Fl -libxo
 .Op Fl CHhn
+.Op Fl M Ar core
+.Op Fl N Ar system
 .Op Fl w Ar interval
 .Op Fl b | c | e | f | i | j | k | l | L | r | s | S | t | v | x
 .Op Fl a | Ar pid | Ar core ...

Modified: head/usr.bin/procstat/procstat.c
==============================================================================
--- head/usr.bin/procstat/procstat.c	Fri May 26 20:20:40 2017	(r318967)
+++ head/usr.bin/procstat/procstat.c	Fri May 26 21:10:01 2017	(r318968)
@@ -50,10 +50,11 @@ static void
 usage(void)
 {
 
-	xo_error("usage: procstat [-CHhn] [-M core] [-N system] "
-	    "[-w interval]\n"
+	xo_error("usage: procstat [--libxo] [-CHhn] [-M core] "
+	    "[-N system] [-w interval]\n"
 	    "                [-b | -c | -e | -f | -i | -j | -k | "
-	    "-l | -r | -s | -S | -t | -v | -x]\n"
+	    "-l | -L | -r | -s | \n"
+	    "                 -S | -t | -v | -x]\n"
 	    "                [-a | pid | core ...]\n");
 	xo_finish();
 	exit(EX_USAGE);
@@ -164,7 +165,7 @@ main(int argc, char *argv[])
 	argc = xo_parse_args(argc, argv);
 	xocontainer = "basic";
 
-	while ((ch = getopt(argc, argv, "CHN:M:abcefijklLhrsStvw:x")) != -1) {
+	while ((ch = getopt(argc, argv, "abCcefHhijkLlM:N:nrSstvw:x")) != -1) {
 		switch (ch) {
 		case 'C':
 			Cflag++;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705262110.v4QLA15h017078>