aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-avr32/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-avr32/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-avr32/thread_info.h')
-rw-r--r--include/asm-avr32/thread_info.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/include/asm-avr32/thread_info.h b/include/asm-avr32/thread_info.h
index a2e606dd4f4a..17dacf3f36d3 100644
--- a/include/asm-avr32/thread_info.h
+++ b/include/asm-avr32/thread_info.h
@@ -74,20 +74,18 @@ static inline struct thread_info *current_thread_info(void)
74 * - other flags in MSW 74 * - other flags in MSW
75 */ 75 */
76#define TIF_SYSCALL_TRACE 0 /* syscall trace active */ 76#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
77#define TIF_NOTIFY_RESUME 1 /* resumption notification requested */ 77#define TIF_SIGPENDING 1 /* signal pending */
78#define TIF_SIGPENDING 2 /* signal pending */ 78#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
79#define TIF_NEED_RESCHED 3 /* rescheduling necessary */ 79#define TIF_POLLING_NRFLAG 3 /* true if poll_idle() is polling
80#define TIF_POLLING_NRFLAG 4 /* true if poll_idle() is polling
81 TIF_NEED_RESCHED */ 80 TIF_NEED_RESCHED */
82#define TIF_BREAKPOINT 5 /* true if we should break after return */ 81#define TIF_BREAKPOINT 4 /* true if we should break after return */
83#define TIF_SINGLE_STEP 6 /* single step after next break */ 82#define TIF_SINGLE_STEP 5 /* single step after next break */
84#define TIF_MEMDIE 7 83#define TIF_MEMDIE 6
85#define TIF_RESTORE_SIGMASK 8 /* restore signal mask in do_signal */ 84#define TIF_RESTORE_SIGMASK 7 /* restore signal mask in do_signal */
86#define TIF_CPU_GOING_TO_SLEEP 9 /* CPU is entering sleep 0 mode */ 85#define TIF_CPU_GOING_TO_SLEEP 8 /* CPU is entering sleep 0 mode */
87#define TIF_USERSPACE 31 /* true if FS sets userspace */ 86#define TIF_USERSPACE 31 /* true if FS sets userspace */
88 87
89#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 88#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
90#define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
91#define _TIF_SIGPENDING (1 << TIF_SIGPENDING) 89#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
92#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) 90#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
93#define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 91#define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG)