From 70aaf5a1942c7a500b96c5ab8213f31fe78f6c33 Mon Sep 17 00:00:00 2001 From: marschap Date: Sun, 10 Dec 2006 17:08:22 +0000 Subject: [PATCH] fix comments --- clients/lcdproc/machine.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/clients/lcdproc/machine.h b/clients/lcdproc/machine.h index 15e2655..87b91cc 100644 --- a/clients/lcdproc/machine.h +++ b/clients/lcdproc/machine.h @@ -23,11 +23,11 @@ typedef struct { - unsigned long total; /**< total # of processes (since last call) */ - unsigned long user; /**< # of processes in user mode (since last call) */ - unsigned long system; /**< # of processes in kernel mode (since last call) */ - unsigned long nice; /**< # of 'niced' processes in user mode (since last call) */ - unsigned long idle; /**< # of processes idling (since last call) */ + unsigned long total; /**< total time (in USER_HZ; since last call) */ + unsigned long user; /**< time in user mode (in USER_HZ; since last call) */ + unsigned long system; /**< time in kernel mode (in USER_HZ; since last call) */ + unsigned long nice; /**< time in 'niced' user mode (in USER_HZ; since last call) */ + unsigned long idle; /**< time idling (in USER_HZ; since last call) */ } load_type; @@ -50,7 +50,7 @@ typedef struct int cache; /**< memory in page cache (in kB) */ int buffers; /**< memory in buffer cache (in kB) */ int free; /**< free memory (in kB) */ - int shared; /**< ??? (in KB) */ + int shared; /**< ??? (in kB) */ } meminfo_type;