diff options
author | Stephane Eranian <eranian@hpl.hp.com> | 2007-07-31 03:38:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 18:39:38 -0400 |
commit | a583f1b54249b11ad1ffd14c6e74d28fcbc59c07 (patch) | |
tree | 3220e8baad9631c7d24175f712833aa5a0d468ae /include/asm-arm | |
parent | cd4f0ef7c03e79f92a883843662e3d0eaae26fb4 (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-arm')
-rw-r--r-- | include/asm-arm/thread_info.h | 7 |
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) |