aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/thread_info_32.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-04-30 16:12:05 -0400
committerIngo Molnar <mingo@elte.hu>2008-05-12 15:28:02 -0400
commit1c7d06d419dbe82c76fbb4d3e1fa61b2da2dc00b (patch)
tree16babe0868bf895cb8043689696fa0781b32222a /include/asm-x86/thread_info_32.h
parent492c2e476eac010962850006c49df326919b284c (diff)
revert: thread_info.h change
temporarily revert parts of "signals: x86 TS_RESTORE_SIGMASK". Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/thread_info_32.h')
-rw-r--r--include/asm-x86/thread_info_32.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/include/asm-x86/thread_info_32.h b/include/asm-x86/thread_info_32.h
index b6338829d1a8..531859962096 100644
--- a/include/asm-x86/thread_info_32.h
+++ b/include/asm-x86/thread_info_32.h
@@ -131,6 +131,7 @@ static inline struct thread_info *current_thread_info(void)
131#define TIF_SYSCALL_EMU 5 /* syscall emulation active */ 131#define TIF_SYSCALL_EMU 5 /* syscall emulation active */
132#define TIF_SYSCALL_AUDIT 6 /* syscall auditing active */ 132#define TIF_SYSCALL_AUDIT 6 /* syscall auditing active */
133#define TIF_SECCOMP 7 /* secure computing */ 133#define TIF_SECCOMP 7 /* secure computing */
134#define TIF_RESTORE_SIGMASK 8 /* restore signal mask in do_signal() */
134#define TIF_HRTICK_RESCHED 9 /* reprogram hrtick timer */ 135#define TIF_HRTICK_RESCHED 9 /* reprogram hrtick timer */
135#define TIF_MEMDIE 16 136#define TIF_MEMDIE 16
136#define TIF_DEBUG 17 /* uses debug registers */ 137#define TIF_DEBUG 17 /* uses debug registers */
@@ -150,6 +151,7 @@ static inline struct thread_info *current_thread_info(void)
150#define _TIF_SYSCALL_EMU (1 << TIF_SYSCALL_EMU) 151#define _TIF_SYSCALL_EMU (1 << TIF_SYSCALL_EMU)
151#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) 152#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
152#define _TIF_SECCOMP (1 << TIF_SECCOMP) 153#define _TIF_SECCOMP (1 << TIF_SECCOMP)
154#define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK)
153#define _TIF_HRTICK_RESCHED (1 << TIF_HRTICK_RESCHED) 155#define _TIF_HRTICK_RESCHED (1 << TIF_HRTICK_RESCHED)
154#define _TIF_DEBUG (1 << TIF_DEBUG) 156#define _TIF_DEBUG (1 << TIF_DEBUG)
155#define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP) 157#define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP)
@@ -186,20 +188,9 @@ static inline struct thread_info *current_thread_info(void)
186 this quantum (SMP) */ 188 this quantum (SMP) */
187#define TS_POLLING 0x0002 /* True if in idle loop 189#define TS_POLLING 0x0002 /* True if in idle loop
188 and not sleeping */ 190 and not sleeping */
189#define TS_RESTORE_SIGMASK 0x0004 /* restore signal mask in do_signal() */
190 191
191#define tsk_is_polling(t) (task_thread_info(t)->status & TS_POLLING) 192#define tsk_is_polling(t) (task_thread_info(t)->status & TS_POLLING)
192 193
193#ifndef __ASSEMBLY__
194#define HAVE_SET_RESTORE_SIGMASK 1
195static inline void set_restore_sigmask(void)
196{
197 struct thread_info *ti = current_thread_info();
198 ti->status |= TS_RESTORE_SIGMASK;
199 set_bit(TIF_SIGPENDING, &ti->flags);
200}
201#endif /* !__ASSEMBLY__ */
202
203#endif /* __KERNEL__ */ 194#endif /* __KERNEL__ */
204 195
205#endif /* _ASM_THREAD_INFO_H */ 196#endif /* _ASM_THREAD_INFO_H */