diff options
-rw-r--r-- | include/linux/sched.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 49e617fa0f66..afe6c61f13e5 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -110,11 +110,11 @@ extern unsigned long nr_iowait(void); | |||
110 | #define TASK_RUNNING 0 | 110 | #define TASK_RUNNING 0 |
111 | #define TASK_INTERRUPTIBLE 1 | 111 | #define TASK_INTERRUPTIBLE 1 |
112 | #define TASK_UNINTERRUPTIBLE 2 | 112 | #define TASK_UNINTERRUPTIBLE 2 |
113 | #define TASK_STOPPED 4 | 113 | #define TASK_NONINTERACTIVE 4 |
114 | #define TASK_TRACED 8 | 114 | #define TASK_STOPPED 8 |
115 | #define EXIT_ZOMBIE 16 | 115 | #define TASK_TRACED 16 |
116 | #define EXIT_DEAD 32 | 116 | #define EXIT_ZOMBIE 32 |
117 | #define TASK_NONINTERACTIVE 64 | 117 | #define EXIT_DEAD 64 |
118 | 118 | ||
119 | #define __set_task_state(tsk, state_value) \ | 119 | #define __set_task_state(tsk, state_value) \ |
120 | do { (tsk)->state = (state_value); } while (0) | 120 | do { (tsk)->state = (state_value); } while (0) |