mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-04 21:31:51 +00:00
proc/array.c: Use TASK_REPORT
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
This commit is contained in:
parent
21498223da
commit
1587e2b188
1 changed files with 1 additions and 6 deletions
|
@ -141,12 +141,7 @@ static const char *task_state_array[] = {
|
||||||
|
|
||||||
static inline const char *get_task_state(struct task_struct *tsk)
|
static inline const char *get_task_state(struct task_struct *tsk)
|
||||||
{
|
{
|
||||||
unsigned int state = (tsk->state & (TASK_RUNNING |
|
unsigned int state = (tsk->state & TASK_REPORT) | tsk->exit_state;
|
||||||
TASK_INTERRUPTIBLE |
|
|
||||||
TASK_UNINTERRUPTIBLE |
|
|
||||||
TASK_STOPPED |
|
|
||||||
TASK_TRACED)) |
|
|
||||||
tsk->exit_state;
|
|
||||||
const char **p = &task_state_array[0];
|
const char **p = &task_state_array[0];
|
||||||
|
|
||||||
while (state) {
|
while (state) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue