mirror of https://github.com/xzeldon/htop.git
Added columns and added/fixed aliases in the manpage
This commit is contained in:
parent
9ba8e2ed05
commit
bbd62c1929
21
htop.1.in
21
htop.1.in
|
@ -1,4 +1,4 @@
|
||||||
.TH "HTOP" "1" "2011" "@PACKAGE_STRING@" "Utils"
|
.TH "HTOP" "1" "2014" "@PACKAGE_STRING@" "Utils"
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
htop \- interactive process viewer
|
htop \- interactive process viewer
|
||||||
.SH "SYNOPSIS"
|
.SH "SYNOPSIS"
|
||||||
|
@ -179,6 +179,9 @@ The parent process ID.
|
||||||
.B PGRP
|
.B PGRP
|
||||||
The process's group ID.
|
The process's group ID.
|
||||||
.TP
|
.TP
|
||||||
|
.B TGID
|
||||||
|
The thread group ID.
|
||||||
|
.TP
|
||||||
.B SESSION (SESN)
|
.B SESSION (SESN)
|
||||||
The process's session ID.
|
The process's session ID.
|
||||||
.TP
|
.TP
|
||||||
|
@ -224,11 +227,11 @@ executing system calls on behalf of the process, measured in clock ticks.
|
||||||
The time, measured in clock ticks that the process has spent in user and system
|
The time, measured in clock ticks that the process has spent in user and system
|
||||||
time (see UTIME, STIME above).
|
time (see UTIME, STIME above).
|
||||||
.TP
|
.TP
|
||||||
.B CUTIME
|
.B CUTIME (CUTIME+)
|
||||||
The children's user CPU time, which is the amount of time the process's
|
The children's user CPU time, which is the amount of time the process's
|
||||||
waited-for children have spent executing in user mode (see UTIME above).
|
waited-for children have spent executing in user mode (see UTIME above).
|
||||||
.TP
|
.TP
|
||||||
.B CSTIME
|
.B CSTIME (CSTIME+)
|
||||||
The children's system CPU time, which is the amount of time the kernel has spent
|
The children's system CPU time, which is the amount of time the kernel has spent
|
||||||
executing system calls on behalf of all the process's waited-for children (see
|
executing system calls on behalf of all the process's waited-for children (see
|
||||||
STIME above).
|
STIME above).
|
||||||
|
@ -237,7 +240,7 @@ STIME above).
|
||||||
The kernel's internal priority for the process, usually just its nice value
|
The kernel's internal priority for the process, usually just its nice value
|
||||||
plus twenty. Different for real-time processes.
|
plus twenty. Different for real-time processes.
|
||||||
.TP
|
.TP
|
||||||
.B PERCENT_MEM
|
.B PERCENT_MEM (MEM%)
|
||||||
The percentage of memory the process is currently using (based on the process's
|
The percentage of memory the process is currently using (based on the process's
|
||||||
resident memory size, see M_RESIDENT below).
|
resident memory size, see M_RESIDENT below).
|
||||||
.TP
|
.TP
|
||||||
|
@ -271,7 +274,7 @@ The user ID of the process owner.
|
||||||
The username of the process owner, or the user ID if the name can't be
|
The username of the process owner, or the user ID if the name can't be
|
||||||
determined.
|
determined.
|
||||||
.TP
|
.TP
|
||||||
.B STARTTIME
|
.B STARTTIME (START)
|
||||||
The time the process was started.
|
The time the process was started.
|
||||||
.TP
|
.TP
|
||||||
.B RCHAR (RD_CHAR)
|
.B RCHAR (RD_CHAR)
|
||||||
|
@ -298,12 +301,18 @@ The I/O rate of read(2) in bytes per second, for the process.
|
||||||
.B IO_WRITE_RATE (IOWR)
|
.B IO_WRITE_RATE (IOWR)
|
||||||
The I/O rate of write(2) in bytes per second, for the process.
|
The I/O rate of write(2) in bytes per second, for the process.
|
||||||
.TP
|
.TP
|
||||||
.B IO_RATE (IO)
|
.B IO_RATE (IORW)
|
||||||
The I/O rate, IO_READ_RATE + IO_WRITE_RATE (see above).
|
The I/O rate, IO_READ_RATE + IO_WRITE_RATE (see above).
|
||||||
.TP
|
.TP
|
||||||
.B CNCLWB (IO_CANCEL)
|
.B CNCLWB (IO_CANCEL)
|
||||||
Bytes of cancelled write(2) I/O.
|
Bytes of cancelled write(2) I/O.
|
||||||
.TP
|
.TP
|
||||||
|
.B IO_PRIORITY (IO)
|
||||||
|
The I/O scheduling class followed by the priority if the class supports it:
|
||||||
|
\fBR\fR for Realtime
|
||||||
|
\fBB\fR for Best-effort
|
||||||
|
\fBid\fR for Idle
|
||||||
|
.TP
|
||||||
.B CGROUP
|
.B CGROUP
|
||||||
Which cgroup the process is in.
|
Which cgroup the process is in.
|
||||||
.TP
|
.TP
|
||||||
|
|
Loading…
Reference in New Issue