Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Oct 2011 11:11:05 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r226190 - stable/9/bin/ps
Message-ID:  <201110101111.p9ABB5M8057060@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb (doc committer)
Date: Mon Oct 10 11:11:05 2011
New Revision: 226190
URL: http://svn.freebsd.org/changeset/base/226190

Log:
  MFC 225908, 225912, 225927:
  
  225908:
  - Reorder default ps(1) output according to reality.
  
  225912:
  - there's no reason the semantics of the -x flag are being explained in
    the -a flag description
  - be more precise regarding the relation between the -a flag and the
    security.bsd.see_other_uids sysctl
  - describe the format of the -t flag's argument
  - 'con' no longer is a possible entry in the 'TT' column
  - explain that the 'TT' column refers to pseudo-terminals
    via mere numbers
  - add a hint in the 'tt' keyword description that a
    keyword 'tty' exists, which will give the full terminal pathname
  
  225859:
  - Correct a typo that was introduced in 225912
  
  Approved by:		re (kib)

Modified:
  stable/9/bin/ps/ps.1
Directory Properties:
  stable/9/bin/ps/   (props changed)

Modified: stable/9/bin/ps/ps.1
==============================================================================
--- stable/9/bin/ps/ps.1	Mon Oct 10 11:07:36 2011	(r226189)
+++ stable/9/bin/ps/ps.1	Mon Oct 10 11:11:05 2011	(r226190)
@@ -29,7 +29,7 @@
 .\"     @(#)ps.1	8.3 (Berkeley) 4/18/94
 .\" $FreeBSD$
 .\"
-.Dd July 1, 2011
+.Dd October 1, 2011
 .Dt PS 1
 .Os
 .Sh NAME
@@ -54,6 +54,11 @@ utility
 displays a header line, followed by lines containing information about
 all of your
 processes that have controlling terminals.
+If the
+.Fl x
+options is specified,
+.Nm
+will also display processes that do not have controlling terminals.
 .Pp
 A different set of processes can be selected for display by using any
 combination of the
@@ -90,8 +95,8 @@ and
 .Fl o
 options).
 The default output format includes, for each process, the process' ID,
-controlling terminal, CPU time (including both user and system time),
-state, and associated command.
+controlling terminal, state, CPU time (including both user and system time)
+and associated command.
 .Pp
 The process file system (see
 .Xr procfs 5 )
@@ -103,13 +108,9 @@ The options are as follows:
 .Bl -tag -width indent
 .It Fl a
 Display information about other users' processes as well as your own.
-This will skip any processes which do not have a controlling terminal,
-unless the
-.Fl x
-option is also specified.
-This can be disabled by setting the
+If the
 .Va security.bsd.see_other_uids
-sysctl to zero.
+sysctl is set to zero, this option is honored only if the UID of the user is 0.
 .It Fl c
 Change the
 .Dq command
@@ -216,6 +217,9 @@ with the standard input.
 .It Fl t
 Display information about processes attached to the specified terminal
 devices.
+Full pathnames, as well as abbreviations (see explanation of the
+.Cm tt
+keyword) can be specified.
 .It Fl U
 Display the processes belonging to the specified usernames.
 .It Fl u
@@ -427,12 +431,15 @@ The process is being traced or debugged.
 An abbreviation for the pathname of the controlling terminal, if any.
 The abbreviation consists of the three letters following
 .Pa /dev/tty ,
-or, for the console,
-.Dq Li con .
+or, for pseudo-terminals, the corresponding entry in
+.Pa /dev/pts .
 This is followed by a
 .Ql -
 if the process can no longer reach that
 controlling terminal (i.e., it has been revoked).
+The full pathname of the controlling terminal is available via the
+.Cm tty
+keyword.
 .It Cm wchan
 The event (an address in the system) on which a process waits.
 When printed numerically, the initial part of the address is



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