* added 0.99 linux version
[mascara-docs.git] / i386 / linux / linux-2.3.21 / arch / sh / kernel / init_task.c
blobaacd8f304f9e40e0af1557bc217da6e2ee1ecde8
1 #include <linux/mm.h>
2 #include <linux/sched.h>
3 #include <linux/init.h>
5 #include <asm/uaccess.h>
6 #include <asm/pgtable.h>
8 static struct vm_area_struct init_mmap = INIT_MMAP;
9 static struct fs_struct init_fs = INIT_FS;
10 static struct files_struct init_files = INIT_FILES;
11 static struct signal_struct init_signals = INIT_SIGNALS;
12 struct mm_struct init_mm = INIT_MM(init_mm);
15 * Initial task structure.
17 * We need to make sure that this is 8192-byte aligned due to the
18 * way process stacks are handled. This is done by having a special
19 * "init_task" linker map entry..
21 union task_union init_task_union
22 __attribute__((__section__(".data.init_task"))) =
23 { INIT_TASK(init_task_union.task) };