Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 25-akpm/arch/x86_64/kernel/kgdb_stub.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN arch/x86_64/kernel/kgdb_stub.c~kgdb-x86_64-fix arch/x86_64/kernel/kgdb_stub.c
--- 25/arch/x86_64/kernel/kgdb_stub.c~kgdb-x86_64-fix	2004-10-22 00:20:56.675416072 -0700
+++ 25-akpm/arch/x86_64/kernel/kgdb_stub.c	2004-10-22 00:21:14.388723240 -0700
@@ -1303,7 +1303,7 @@ print_extra_info(task_t *p, char *buf)
 		     (p->state < 0) ? 'U' :
 		     (p->state & TASK_UNINTERRUPTIBLE) ? 'D' :
 		     (p->state & TASK_STOPPED || p->ptrace & PT_PTRACED) ? 'T' :
-		     (p->state & (TASK_ZOMBIE | TASK_DEAD)) ? 'Z' :
+		     (p->state & (EXIT_ZOMBIE | EXIT_DEAD)) ? 'Z' :
 		     (p->state & TASK_INTERRUPTIBLE) ? 'S' : '?',
 		   p->comm);
 }
_