summaryrefslogtreecommitdiff
path: root/fs/proc/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r--fs/proc/array.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index d05dab0697d3..5c289c73a00e 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -137,13 +137,13 @@ static const char *task_state_array[] = {
static inline const char * get_task_state(struct task_struct *tsk)
{
- unsigned int state = tsk->state & (TASK_RUNNING |
- TASK_INTERRUPTIBLE |
- TASK_UNINTERRUPTIBLE |
- TASK_ZOMBIE |
- TASK_DEAD |
- TASK_STOPPED |
- TASK_TRACED);
+ unsigned int state = (tsk->state & (TASK_RUNNING |
+ TASK_INTERRUPTIBLE |
+ TASK_UNINTERRUPTIBLE |
+ TASK_STOPPED |
+ TASK_TRACED)) |
+ (tsk->exit_state & (EXIT_ZOMBIE |
+ EXIT_DEAD));
const char **p = &task_state_array[0];
while (state) {