Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 2 | #include <linux/init_task.h> |
| 3 | #include <linux/export.h> |
| 4 | #include <linux/mqueue.h> |
| 5 | #include <linux/sched.h> |
Clark Williams | cf4aebc2 | 2013-02-07 09:46:59 -0600 | [diff] [blame] | 6 | #include <linux/sched/sysctl.h> |
Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 7 | #include <linux/sched/rt.h> |
Ingo Molnar | 9164bb4 | 2017-02-04 01:20:53 +0100 | [diff] [blame] | 8 | #include <linux/sched/task.h> |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 9 | #include <linux/init.h> |
| 10 | #include <linux/fs.h> |
| 11 | #include <linux/mm.h> |
| 12 | |
| 13 | #include <asm/pgtable.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 14 | #include <linux/uaccess.h> |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 15 | |
| 16 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); |
| 17 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); |
| 18 | |
| 19 | /* Initial task structure */ |
David Howells | 0500871 | 2018-01-02 15:12:01 +0000 | [diff] [blame^] | 20 | struct task_struct init_task |
| 21 | #ifdef CONFIG_ARCH_TASK_STRUCT_ON_STACK |
| 22 | __init_task_data |
| 23 | #endif |
| 24 | = INIT_TASK(init_task); |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 25 | EXPORT_SYMBOL(init_task); |
| 26 | |
| 27 | /* |
| 28 | * Initial thread structure. Alignment of this is handled by a special |
| 29 | * linker map entry. |
| 30 | */ |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 31 | #ifndef CONFIG_THREAD_INFO_IN_TASK |
David Howells | 0500871 | 2018-01-02 15:12:01 +0000 | [diff] [blame^] | 32 | struct thread_info init_thread_info __init_thread_info = INIT_THREAD_INFO(init_task); |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 33 | #endif |