aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-blackfin/thread_info.h
diff options
context:
space:
mode:
authorStephane Eranian <eranian@hpl.hp.com>2007-07-31 03:38:00 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-31 18:39:38 -0400
commita583f1b54249b11ad1ffd14c6e74d28fcbc59c07 (patch)
tree3220e8baad9631c7d24175f712833aa5a0d468ae /include/asm-blackfin/thread_info.h
parentcd4f0ef7c03e79f92a883843662e3d0eaae26fb4 (diff)
remove unused TIF_NOTIFY_RESUME flag
Remove unused TIF_NOTIFY_RESUME flag for all processor architectures. The flag was not used excecpt on IA-64 where the patch replaces it with TIF_PERFMON_WORK. Signed-off-by: stephane eranian <eranian@hpl.hp.com> Cc: <linux-arch@vger.kernel.org> Cc: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-blackfin/thread_info.h')
-rw-r--r--include/asm-blackfin/thread_info.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/include/asm-blackfin/thread_info.h b/include/asm-blackfin/thread_info.h
index 34d3c2eec949..15b99cf4f50b 100644
--- a/include/asm-blackfin/thread_info.h
+++ b/include/asm-blackfin/thread_info.h
@@ -118,18 +118,16 @@ static inline struct thread_info *current_thread_info(void)
118 * thread information flag bit numbers 118 * thread information flag bit numbers
119 */ 119 */
120#define TIF_SYSCALL_TRACE 0 /* syscall trace active */ 120#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
121#define TIF_NOTIFY_RESUME 1 /* resumption notification requested */ 121#define TIF_SIGPENDING 1 /* signal pending */
122#define TIF_SIGPENDING 2 /* signal pending */ 122#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
123#define TIF_NEED_RESCHED 3 /* rescheduling necessary */ 123#define TIF_POLLING_NRFLAG 3 /* true if poll_idle() is polling
124#define TIF_POLLING_NRFLAG 4 /* true if poll_idle() is polling
125 TIF_NEED_RESCHED */ 124 TIF_NEED_RESCHED */
126#define TIF_MEMDIE 5 125#define TIF_MEMDIE 4
127#define TIF_RESTORE_SIGMASK 6 /* restore signal mask in do_signal() */ 126#define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */
128#define TIF_FREEZE 7 /* is freezing for suspend */ 127#define TIF_FREEZE 6 /* is freezing for suspend */
129 128
130/* as above, but as bit values */ 129/* as above, but as bit values */
131#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) 130#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
132#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
133#define _TIF_SIGPENDING (1<<TIF_SIGPENDING) 131#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
134#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) 132#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
135#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 133#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)