From 1e31b63a7e6064f95383e1e41c2e503879eb5bf0 Mon Sep 17 00:00:00 2001 From: Sworddragon Date: Wed, 4 Nov 2015 12:09:22 +0100 Subject: [PATCH 1/2] Fixed some typos --- htop.1.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htop.1.in b/htop.1.in index a899d189..2c7d2c9d 100644 --- a/htop.1.in +++ b/htop.1.in @@ -171,7 +171,7 @@ shown in htop's main screen, it is shown below in parenthesis. .LP .TP 5 .B Command -The full command line of the process (i.e program name and arguments). +The full command line of the process (i.e. program name and arguments). .TP .B PID The process ID. @@ -214,7 +214,7 @@ The number of major faults for the process's waited-for children (see MAJFLT abo .TP .B UTIME (UTIME+) The user CPU time, which is the amount of time the process has spent executing -on the CPU in user mode (i.e everything but system calls), measured in clock +on the CPU in user mode (i.e. everything but system calls), measured in clock ticks. .TP .B STIME (STIME+) @@ -249,14 +249,14 @@ The ID of the CPU the process last executed on. Size in memory of the total program size. .TP .B M_RESIDENT (RES) -The resident set size, i.e the size of the text and data sections, plus stack +The resident set size, i.e. the size of the text and data sections, plus stack usage. .TP .B M_SHARE (SHR) The size of the process's shared pages. .TP .B M_TRS (CODE) -The size of the text segment of the process (i.e the size of the processes +The size of the text segment of the process (i.e. the size of the process's executable instructions). .TP .B M_DRS (DATA) From f097bdce8fe8daafb1e791087bd75f9f293f7a67 Mon Sep 17 00:00:00 2001 From: Sworddragon Date: Wed, 4 Nov 2015 12:13:16 +0100 Subject: [PATCH 2/2] Fixed/enhanced some entries in the manpage --- htop.1.in | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/htop.1.in b/htop.1.in index 2c7d2c9d..1fa88ef9 100644 --- a/htop.1.in +++ b/htop.1.in @@ -246,21 +246,22 @@ The time the process was started. The ID of the CPU the process last executed on. .TP .B M_SIZE (VIRT) -Size in memory of the total program size. +The size of the virtual memory of the process. .TP .B M_RESIDENT (RES) -The resident set size, i.e. the size of the text and data sections, plus stack -usage. +The resident set size (text + data + stack) of the process (i.e. the size of the +process's used physical memory). .TP .B M_SHARE (SHR) The size of the process's shared pages. .TP .B M_TRS (CODE) -The size of the text segment of the process (i.e. the size of the process's +The text resident set size of the process (i.e. the size of the process's executable instructions). .TP .B M_DRS (DATA) -The size of the data segment plus stack usage of the process. +The data resident set size (data + stack) of the process (i.e. the size of anything +except the process's executable instructions). .TP .B M_LRS (LIB) The library size of the process.