1 /* thread_info.h: h8300 low-level thread information
2 * adapted from the i386 and PPC versions by Yoshinori Sato <ysato@users.sourceforge.jp>
4 * Copyright (C) 2002 David Howells (dhowells@redhat.com)
5 * - Incorporating suggestions made by Linus Torvalds and Dave Miller
8 #ifndef _ASM_THREAD_INFO_H
9 #define _ASM_THREAD_INFO_H
18 * low level task data.
19 * If you change this, change the TI_* offsets below to match.
22 struct task_struct
*task
; /* main task structure */
23 struct exec_domain
*exec_domain
; /* execution domain */
24 unsigned long flags
; /* low level flags */
25 int cpu
; /* cpu we're on */
26 int preempt_count
; /* 0 => preemptable, <0 => BUG */
27 struct restart_block restart_block
;
31 * macros/functions for gaining access to the thread information structure
33 #define INIT_THREAD_INFO(tsk) \
36 .exec_domain = &default_exec_domain, \
41 .fn = do_no_restart_syscall, \
45 #define init_thread_info (init_thread_union.thread_info)
46 #define init_stack (init_thread_union.stack)
50 * Size of kernel stack for each process. This must be a power of 2...
52 #define THREAD_SIZE 8192 /* 2 pages */
55 /* how to get the thread information struct from C */
56 static inline struct thread_info
*current_thread_info(void)
58 struct thread_info
*ti
;
63 : "i" (~(THREAD_SIZE
-1))
68 /* thread information allocation */
69 #define alloc_thread_info(tsk) ((struct thread_info *) \
70 __get_free_pages(GFP_KERNEL, 1))
71 #define free_thread_info(ti) free_pages((unsigned long) (ti), 1)
72 #endif /* __ASSEMBLY__ */
75 * Offsets in thread_info structure, used in assembly code
78 #define TI_EXECDOMAIN 4
81 #define TI_PRE_COUNT 16
83 #define PREEMPT_ACTIVE 0x4000000
86 * thread information flag bit numbers
88 #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
89 #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
90 #define TIF_SIGPENDING 2 /* signal pending */
91 #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
92 #define TIF_POLLING_NRFLAG 4 /* true if poll_idle() is polling
96 /* as above, but as bit values */
97 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
98 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
99 #define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
100 #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
101 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
103 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */
105 #endif /* __KERNEL__ */
107 #endif /* _ASM_THREAD_INFO_H */