diff options
Diffstat (limited to 'fs/proc/array.c')
| -rw-r--r-- | fs/proc/array.c | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index 4badde179b1..96361e8fa3a 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -138,9 +138,12 @@ static const char *task_state_array[] = {  	"S (sleeping)",		/*  1 */  	"D (disk sleep)",	/*  2 */  	"T (stopped)",		/*  4 */ -	"T (tracing stop)",	/*  8 */ +	"t (tracing stop)",	/*  8 */  	"Z (zombie)",		/* 16 */ -	"X (dead)"		/* 32 */ +	"X (dead)",		/* 32 */ +	"x (dead)",		/* 64 */ +	"K (wakekill)",		/* 128 */ +	"W (waking)",		/* 256 */  };  static inline const char *get_task_state(struct task_struct *tsk)  |