aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/thread_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-arm/thread_info.h')
-rw-r--r--include/asm-arm/thread_info.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/asm-arm/thread_info.h b/include/asm-arm/thread_info.h
index 69c65d56a6ac..41784357a204 100644
--- a/include/asm-arm/thread_info.h
+++ b/include/asm-arm/thread_info.h
@@ -134,22 +134,19 @@ extern void iwmmxt_task_switch(struct thread_info *);
134/* 134/*
135 * thread information flags: 135 * thread information flags:
136 * TIF_SYSCALL_TRACE - syscall trace active 136 * TIF_SYSCALL_TRACE - syscall trace active
137 * TIF_NOTIFY_RESUME - resumption notification requested
138 * TIF_SIGPENDING - signal pending 137 * TIF_SIGPENDING - signal pending
139 * TIF_NEED_RESCHED - rescheduling necessary 138 * TIF_NEED_RESCHED - rescheduling necessary
140 * TIF_USEDFPU - FPU was used by this task this quantum (SMP) 139 * TIF_USEDFPU - FPU was used by this task this quantum (SMP)
141 * 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
142 */ 141 */
143#define TIF_NOTIFY_RESUME 0 142#define TIF_SIGPENDING 0
144#define TIF_SIGPENDING 1 143#define TIF_NEED_RESCHED 1
145#define TIF_NEED_RESCHED 2
146#define TIF_SYSCALL_TRACE 8 144#define TIF_SYSCALL_TRACE 8
147#define TIF_POLLING_NRFLAG 16 145#define TIF_POLLING_NRFLAG 16
148#define TIF_USING_IWMMXT 17 146#define TIF_USING_IWMMXT 17
149#define TIF_MEMDIE 18 147#define TIF_MEMDIE 18
150#define TIF_FREEZE 19 148#define TIF_FREEZE 19
151 149
152#define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
153#define _TIF_SIGPENDING (1 << TIF_SIGPENDING) 150#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
154#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) 151#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
155#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 152#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)