svn commit: r318175 - head/usr.bin/procstat

Ngie Cooper ngie at FreeBSD.org
Thu May 11 06:35:25 UTC 2017


Author: ngie
Date: Thu May 11 06:35:23 2017
New Revision: 318175
URL: https://svnweb.freebsd.org/changeset/base/318175

Log:
  procstat(1): clarify the Signal Disposition section
  
  - Fix a typo (SIGIGN -> SIG_IGN). Use .Dv when referencing SIG_IGN.
  - Use semi-colons as soft breaks when separating sentences for
    the FLAGS section.
  - Tweak wording for C slightly to flow better and to be a bit
    more technically correct (signals with handlers installed will
    be caught by the target program).
  - Reference signal(3) in the SEE ALSO section.
  
  MFC after:	3 weeks
  Sponsored by:	Dell EMC Isilon

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

Modified: head/usr.bin/procstat/procstat.1
==============================================================================
--- head/usr.bin/procstat/procstat.1	Thu May 11 06:24:57 2017	(r318174)
+++ head/usr.bin/procstat/procstat.1	Thu May 11 06:35:23 2017	(r318175)
@@ -285,11 +285,13 @@ signal name
 process signal disposition details, three symbols
 .Bl -tag -width X -compact
 .It P
-if signal is pending in the global process queue, - otherwise
+if signal is pending in the global process queue; - otherwise.
 .It I
-if signal delivery disposition is SIGIGN, - otherwise
+if signal delivery disposition is
+.Dv SIG_IGN;
+- otherwise.
 .It C
-if signal delivery is to catch it, - otherwise
+if the signal will be caught; - otherwise.
 .El
 .El
 .Pp
@@ -542,6 +544,7 @@ auxiliary vector value
 .Xr cap_rights_limit 2 ,
 .Xr libprocstat 3 ,
 .Xr libxo 3 ,
+.Xr signal 3 ,
 .Xr xo_parse_args 3 ,
 .Xr ddb 4 ,
 .Xr stack 9


More information about the svn-src-head mailing list