diff options
Diffstat (limited to 'include/asm-arm/thread_info.h')
-rw-r--r-- | include/asm-arm/thread_info.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/asm-arm/thread_info.h b/include/asm-arm/thread_info.h index eae85b09db2e..41784357a204 100644 --- a/include/asm-arm/thread_info.h +++ b/include/asm-arm/thread_info.h | |||
@@ -24,7 +24,6 @@ | |||
24 | struct task_struct; | 24 | struct task_struct; |
25 | struct exec_domain; | 25 | struct exec_domain; |
26 | 26 | ||
27 | #include <asm/ptrace.h> | ||
28 | #include <asm/types.h> | 27 | #include <asm/types.h> |
29 | #include <asm/domain.h> | 28 | #include <asm/domain.h> |
30 | 29 | ||
@@ -135,22 +134,19 @@ extern void iwmmxt_task_switch(struct thread_info *); | |||
135 | /* | 134 | /* |
136 | * thread information flags: | 135 | * thread information flags: |
137 | * TIF_SYSCALL_TRACE - syscall trace active | 136 | * TIF_SYSCALL_TRACE - syscall trace active |
138 | * TIF_NOTIFY_RESUME - resumption notification requested | ||
139 | * TIF_SIGPENDING - signal pending | 137 | * TIF_SIGPENDING - signal pending |
140 | * TIF_NEED_RESCHED - rescheduling necessary | 138 | * TIF_NEED_RESCHED - rescheduling necessary |
141 | * TIF_USEDFPU - FPU was used by this task this quantum (SMP) | 139 | * TIF_USEDFPU - FPU was used by this task this quantum (SMP) |
142 | * TIF_POLLING_NRFLAG - true if poll_idle() is polling TIF_NEED_RESCHED | 140 | * TIF_POLLING_NRFLAG - true if poll_idle() is polling TIF_NEED_RESCHED |
143 | */ | 141 | */ |
144 | #define TIF_NOTIFY_RESUME 0 | 142 | #define TIF_SIGPENDING 0 |
145 | #define TIF_SIGPENDING 1 | 143 | #define TIF_NEED_RESCHED 1 |
146 | #define TIF_NEED_RESCHED 2 | ||
147 | #define TIF_SYSCALL_TRACE 8 | 144 | #define TIF_SYSCALL_TRACE 8 |
148 | #define TIF_POLLING_NRFLAG 16 | 145 | #define TIF_POLLING_NRFLAG 16 |
149 | #define TIF_USING_IWMMXT 17 | 146 | #define TIF_USING_IWMMXT 17 |
150 | #define TIF_MEMDIE 18 | 147 | #define TIF_MEMDIE 18 |
151 | #define TIF_FREEZE 19 | 148 | #define TIF_FREEZE 19 |
152 | 149 | ||
153 | #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) | ||
154 | #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) | 150 | #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) |
155 | #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) | 151 | #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) |
156 | #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) | 152 | #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) |