aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sh64/thread_info.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-15 18:50:19 -0700
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-15 18:50:19 -0700
commit835a906c74ecf20cdb817d6d02975cc0ba421e35 (patch)
tree86db6424947e8f5b4ddb1f7f6bfdaf9353f194d7 /include/asm-sh64/thread_info.h
parente089d43fb1ab8e39168c9f61d30aef5b8724d085 (diff)
parent51a41e7d39ce0da1198837aaa495fe6dbcc4f802 (diff)
downloadkernel_samsung_espresso10-835a906c74ecf20cdb817d6d02975cc0ba421e35.zip
kernel_samsung_espresso10-835a906c74ecf20cdb817d6d02975cc0ba421e35.tar.gz
kernel_samsung_espresso10-835a906c74ecf20cdb817d6d02975cc0ba421e35.tar.bz2
Merge master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh64-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh64-2.6: sh64: Add .gitignore entry for syscalltab. sh64: generic quicklist support. sh64: Update cayman defconfig. sh64: Fixup sh-sci build. sh64: ppoll/pselect6() and restartable syscalls. sh64: dma-mapping updates. sh64: Fixups for the irq_regs changes. sh64: Wire up many new syscalls. spelling fixes: arch/sh64/ sh64: ROUND_UP macro cleanup in arch/sh64/kernel/pci_sh5.c
Diffstat (limited to 'include/asm-sh64/thread_info.h')
-rw-r--r--include/asm-sh64/thread_info.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-sh64/thread_info.h b/include/asm-sh64/thread_info.h
index 1f825cb..f6d5117 100644
--- a/include/asm-sh64/thread_info.h
+++ b/include/asm-sh64/thread_info.h
@@ -78,7 +78,13 @@ static inline struct thread_info *current_thread_info(void)
#define TIF_SIGPENDING 2 /* signal pending */
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
#define TIF_MEMDIE 4
+#define TIF_RESTORE_SIGMASK 5 /* Restore signal mask in do_signal */
+#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
+#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
+#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
+#define _TIF_MEMDIE (1 << TIF_MEMDIE)
+#define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK)
#endif /* __KERNEL__ */