blob: f166b9837c6a59eca771e760d2b4b46dbfbd3a43 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
6#ifndef __UM_THREAD_INFO_H
7#define __UM_THREAD_INFO_H
8
9#ifndef __ASSEMBLY__
10
11#include <linux/config.h>
12#include <asm/processor.h>
13#include <asm/types.h>
14
15struct thread_info {
16 struct task_struct *task; /* main task structure */
17 struct exec_domain *exec_domain; /* execution domain */
18 unsigned long flags; /* low level flags */
19 __u32 cpu; /* current CPU */
Jesper Juhldcd497f2005-06-23 00:09:07 -070020 int preempt_count; /* 0 => preemptable,
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 <0 => BUG */
22 mm_segment_t addr_limit; /* thread address space:
23 0-0xBFFFFFFF for user
24 0-0xFFFFFFFF for kernel */
25 struct restart_block restart_block;
26};
27
28#define INIT_THREAD_INFO(tsk) \
29{ \
Al Viro4d338e12006-03-31 02:30:15 -080030 .task = &tsk, \
31 .exec_domain = &default_exec_domain, \
32 .flags = 0, \
33 .cpu = 0, \
34 .preempt_count = 1, \
35 .addr_limit = KERNEL_DS, \
36 .restart_block = { \
37 .fn = do_no_restart_syscall, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 }, \
39}
40
41#define init_thread_info (init_thread_union.thread_info)
42#define init_stack (init_thread_union.stack)
43
Paolo 'Blaisorblade' Giarrussob3461032005-05-28 15:52:00 -070044#define THREAD_SIZE ((1 << CONFIG_KERNEL_STACK_ORDER) * PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/* how to get the thread information struct from C */
46static inline struct thread_info *current_thread_info(void)
47{
48 struct thread_info *ti;
Paolo 'Blaisorblade' Giarrussob3461032005-05-28 15:52:00 -070049 unsigned long mask = THREAD_SIZE - 1;
50 ti = (struct thread_info *) (((unsigned long) &ti) & ~mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return ti;
52}
53
54/* thread information allocation */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define alloc_thread_info(tsk) \
56 ((struct thread_info *) kmalloc(THREAD_SIZE, GFP_KERNEL))
57#define free_thread_info(ti) kfree(ti)
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60
Paolo 'Blaisorblade' Giarrussoaffac4b2005-05-28 15:52:00 -070061#define PREEMPT_ACTIVE 0x10000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
64#define TIF_SIGPENDING 1 /* signal pending */
65#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
66#define TIF_POLLING_NRFLAG 3 /* true if poll_idle() is polling
67 * TIF_NEED_RESCHED
68 */
69#define TIF_RESTART_BLOCK 4
70#define TIF_MEMDIE 5
Jeff Dike79d20b12005-05-03 07:54:51 +010071#define TIF_SYSCALL_AUDIT 6
Jeff Dike2fc10622006-01-18 17:44:02 -080072#define TIF_RESTORE_SIGMASK 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
75#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
76#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
77#define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG)
Jeff Dike79d20b12005-05-03 07:54:51 +010078#define _TIF_MEMDIE (1 << TIF_MEMDIE)
79#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
Jeff Dike2fc10622006-01-18 17:44:02 -080080#define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#endif