1 #ifndef _ASM_M68K_THREAD_INFO_H
2 #define _ASM_M68K_THREAD_INFO_H
6 #include <asm/segment.h>
9 * On machines with 4k pages we default to an 8k thread size, though we
10 * allow a 4k with config option. Any other machine page size then
11 * the thread size must match the page size (which is 8k and larger here).
14 #ifdef CONFIG_4KSTACKS
15 #define THREAD_SIZE 4096
17 #define THREAD_SIZE 8192
20 #define THREAD_SIZE PAGE_SIZE
22 #define THREAD_SIZE_ORDER ((THREAD_SIZE / PAGE_SIZE) - 1)
27 struct task_struct
*task
; /* main task structure */
29 struct exec_domain
*exec_domain
; /* execution domain */
30 mm_segment_t addr_limit
; /* thread address space */
31 int preempt_count
; /* 0 => preemptable, <0 => BUG */
32 __u32 cpu
; /* should always be 0 on m68k */
33 unsigned long tp_value
; /* thread pointer */
34 struct restart_block restart_block
;
36 #endif /* __ASSEMBLY__ */
38 #define PREEMPT_ACTIVE 0x4000000
40 #define INIT_THREAD_INFO(tsk) \
43 .exec_domain = &default_exec_domain, \
44 .addr_limit = KERNEL_DS, \
45 .preempt_count = INIT_PREEMPT_COUNT, \
47 .fn = do_no_restart_syscall, \
51 #define init_stack (init_thread_union.stack)
54 /* how to get the thread information struct from C */
55 static inline struct thread_info
*current_thread_info(void)
57 struct thread_info
*ti
;
59 "move.l %%sp, %0 \n\t"
62 : "di" (~(THREAD_SIZE
-1))
68 #define init_thread_info (init_thread_union.thread_info)
70 /* entry.S relies on these definitions!
71 * bits 0-7 are tested at every exception exit
72 * bits 8-15 are also tested at syscall exit
74 #define TIF_SIGPENDING 6 /* signal pending */
75 #define TIF_NEED_RESCHED 7 /* rescheduling necessary */
76 #define TIF_DELAYED_TRACE 14 /* single step a syscall */
77 #define TIF_SYSCALL_TRACE 15 /* syscall trace active */
78 #define TIF_MEMDIE 16 /* is terminating due to OOM killer */
79 #define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal */
81 #endif /* _ASM_M68K_THREAD_INFO_H */