Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1587e2b1 authored by Matthew Wilcox's avatar Matthew Wilcox Committed by Matthew Wilcox
Browse files

proc/array.c: Use TASK_REPORT

parent 21498223
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -141,12 +141,7 @@ 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_STOPPED |
					    TASK_TRACED)) |
					   tsk->exit_state;
	unsigned int state = (tsk->state & TASK_REPORT) | tsk->exit_state;
	const char **p = &task_state_array[0];

	while (state) {