Ok. I didn't make 2.4.0 in 2000. Tough. I tried, but we had some
[davej-history.git] / arch / sparc / kernel / init_task.c
blobdaa07bb78f8339d9440df0238d1d6e9e3929e611
1 #include <linux/mm.h>
2 #include <linux/sched.h>
4 #include <asm/pgtable.h>
5 #include <asm/uaccess.h>
7 static struct vm_area_struct init_mmap = INIT_MMAP;
8 static struct fs_struct init_fs = INIT_FS;
9 static struct files_struct init_files = INIT_FILES;
10 static struct signal_struct init_signals = INIT_SIGNALS;
11 struct mm_struct init_mm = INIT_MM(init_mm);
13 /* .text section in head.S is aligned at 8k boundry and this gets linked
14 * right after that so that the init_task_union is aligned properly as well.
15 * If this is not aligned on a 8k boundry, then you should change code
16 * in etrap.S which assumes it.
18 union task_union init_task_union
19 __attribute__((__section__(".text"))) =
20 { INIT_TASK(init_task_union.task) };