# HG changeset patch # User Eli Zaretskii # Date 1223999897 0 # Node ID 2bded667b0a1ae3773ab0ad4fead7845b798a700 # Parent 60ee232a68394dcfe6bf74bf292d146baab46ffa (System Processes): Fix last change. diff -r 60ee232a6839 -r 2bded667b0a1 doc/lispref/processes.texi --- a/doc/lispref/processes.texi Tue Oct 14 15:50:14 2008 +0000 +++ b/doc/lispref/processes.texi Tue Oct 14 15:58:17 2008 +0000 @@ -1634,16 +1634,16 @@ frequently seen codes: @table @code -@item ``D'' +@item "D" uninterruptible sleep (usually I/O) -@item ``R'' +@item "R" running -@item ``S'' +@item "S" interruptible sleep (waiting for some event) -@item ``T'' +@item "T" stopped, e.g., by a job control signal -@item ``Z'' -``zombie'': a process that terminated, but not reaped by its parent +@item "Z" +``zombie'': a process that terminated, but was not reaped by its parent @end table @noindent @@ -1705,8 +1705,8 @@ The numerical priority of the process. @item nice -The @dfn{nice value} of the process, a number. Processes with smaller -nice value get scheduled more favorably. +The @dfn{nice value} of the process, a number. (Processes with smaller +nice values get scheduled more favorably.) @item thcount The number of threads in the process.