svn commit: r324430 - head/bin/ps

Edward Tomasz Napierala trasz at FreeBSD.org
Mon Oct 9 13:53:43 UTC 2017


Author: trasz
Date: Mon Oct  9 13:53:41 2017
New Revision: 324430
URL: https://svnweb.freebsd.org/changeset/base/324430

Log:
  Undocument "tdnam" (leaving it as an alias), and rename the column
  to TDNAME.
  
  Suggested by:	bde
  MFC after:	2 weeks
  Sponsored by:	DARPA, AFRL

Modified:
  head/bin/ps/keyword.c
  head/bin/ps/ps.1

Modified: head/bin/ps/keyword.c
==============================================================================
--- head/bin/ps/keyword.c	Mon Oct  9 13:48:10 2017	(r324429)
+++ head/bin/ps/keyword.c	Mon Oct  9 13:53:41 2017	(r324430)
@@ -199,9 +199,9 @@ static VAR var[] = {
 	{"tdaddr", "TDADDR", NULL, "thread-address", 0, kvar, KOFF(ki_tdaddr),
 	    KPTR, "lx", 0},
 	{"tdev", "TDEV", NULL, "terminal-device", 0, tdev, 0, CHAR, NULL, 0},
-	{"tdnam", "TDNAM", NULL, "thread-name", LJUST, tdnam, 0, CHAR,
+	{"tdnam", "", "tdname", NULL, 0, NULL, 0, CHAR, NULL, 0},
+	{"tdname", "TDNAME", NULL, "thread-name", LJUST, tdnam, 0, CHAR,
 	    NULL, 0},
-	{"tdname", "", "tdnam", NULL, 0, NULL, 0, CHAR, NULL, 0},
 	{"time", "TIME", NULL, "cpu-time", USER, cputime, 0, CHAR, NULL, 0},
 	{"tpgid", "TPGID", NULL, "terminal-process-gid", 0, kvar,
 	    KOFF(ki_tpgid), UINT, PIDFMT, 0},

Modified: head/bin/ps/ps.1
==============================================================================
--- head/bin/ps/ps.1	Mon Oct  9 13:48:10 2017	(r324429)
+++ head/bin/ps/ps.1	Mon Oct  9 13:53:41 2017	(r324430)
@@ -675,9 +675,8 @@ saved UID from a setuid executable
 accumulated system CPU time
 .It Cm tdaddr
 thread address
-.It Cm tdnam
-thread name (alias
-.Cm tdname )
+.It Cm tdname
+thread name
 .It Cm tdev
 control terminal device number
 .It Cm time


More information about the svn-src-all mailing list