1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * arch/sh64/kernel/init_task.c
7  *
8  * Copyright (C) 2000, 2001  Paolo Alberelli
9  *
10  */
11 
12 #include <linux/mm.h>
13 #include <linux/sched.h>
14 #include <linux/init.h>
15 
16 #include <asm/uaccess.h>
17 #include <asm/pgtable.h>
18 
19 static struct fs_struct init_fs = INIT_FS;
20 static struct files_struct init_files = INIT_FILES;
21 static struct signal_struct init_signals = INIT_SIGNALS;
22 struct mm_struct init_mm = INIT_MM(init_mm);
23 
24 
25 struct pt_regs fake_swapper_regs;
26 
27 /*
28  * Initial task structure.
29  *
30  * We need to make sure that this is INIT_TASK_SIZE-byte aligned due
31  * to the way process stacks are handled. This is done by having a
32  * special "init_task" linker map entry..
33  */
34 union task_union init_task_union
35 	__attribute__((__section__(".data.init_task"))) =
36 		{ INIT_TASK(init_task_union.task) };
37