summaryrefslogtreecommitdiff
path: root/fs/proc/array.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2002-11-25 02:13:03 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-11-25 02:13:03 -0800
commit40ab5e99ff7e19428c1f0d2f610320b5b609ab39 (patch)
tree2d3c7f27d5185236b7ffedeedd35c579e798d404 /fs/proc/array.c
parentdf897d93c119694f135d1ca05b6cdf1df8732ac7 (diff)
[PATCH] proc is in the wrong order
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r--fs/proc/array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index 450dd174d3ea..00e80906b170 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -126,9 +126,9 @@ static const char *task_state_array[] = {
"R (running)", /* 0 */
"S (sleeping)", /* 1 */
"D (disk sleep)", /* 2 */
- "Z (zombie)", /* 4 */
"T (stopped)", /* 8 */
- "W (paging)" /* 16 */
+ "Z (zombie)", /* 4 */
+ "X (dead)" /* 16 */
};
static inline const char * get_task_state(struct task_struct *tsk)