]>
Commit | Line | Data |
---|---|---|
a4a2eb49 TG |
1 | #include <linux/init_task.h> |
2 | #include <linux/export.h> | |
3 | #include <linux/mqueue.h> | |
4 | #include <linux/sched.h> | |
cf4aebc2 | 5 | #include <linux/sched/sysctl.h> |
8bd75c77 | 6 | #include <linux/sched/rt.h> |
9164bb4a | 7 | #include <linux/sched/task.h> |
a4a2eb49 TG |
8 | #include <linux/init.h> |
9 | #include <linux/fs.h> | |
10 | #include <linux/mm.h> | |
11 | ||
12 | #include <asm/pgtable.h> | |
7c0f6ba6 | 13 | #include <linux/uaccess.h> |
a4a2eb49 TG |
14 | |
15 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); | |
16 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | |
17 | ||
18 | /* Initial task structure */ | |
19 | struct task_struct init_task = INIT_TASK(init_task); | |
20 | EXPORT_SYMBOL(init_task); | |
21 | ||
22 | /* | |
23 | * Initial thread structure. Alignment of this is handled by a special | |
24 | * linker map entry. | |
25 | */ | |
c65eacbe AL |
26 | union thread_union init_thread_union __init_task_data = { |
27 | #ifndef CONFIG_THREAD_INFO_IN_TASK | |
28 | INIT_THREAD_INFO(init_task) | |
29 | #endif | |
30 | }; |