aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJason Evans <jasone@FreeBSD.org>2000-09-07 01:33:02 +0000
committerJason Evans <jasone@FreeBSD.org>2000-09-07 01:33:02 +0000
commit0384fff8c5b098545c3db311b0e0aa1ec4c9ae7e (patch)
treebc6e36e781569f3efe04995c0b0befebb9154ef5 /usr.bin
parent62ae6c89ad2b03770097d05590093f93b9d94e08 (diff)
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/top/machine.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c
index 0b52a70229d9..06b316850b92 100644
--- a/usr.bin/top/machine.c
+++ b/usr.bin/top/machine.c
@@ -130,7 +130,7 @@ static char up_header[] =
char *state_abbrev[] =
{
- "", "START", "RUN\0\0\0", "SLEEP", "STOP", "ZOMB",
+ "", "START", "RUN\0\0\0", "SLEEP", "STOP", "ZOMB", "WAIT", "MUTEX"
};
@@ -162,10 +162,10 @@ static long cp_diff[CPUSTATES];
/* these are for detailing the process states */
-int process_states[6];
+int process_states[8];
char *procstatenames[] = {
"", " starting, ", " running, ", " sleeping, ", " stopped, ",
- " zombie, ",
+ " zombie, ", " waiting, ", " mutex, ",
NULL
};