/*1* linux/arch/arm/kernel/init_task.c2*/3#include <linux/mm.h>4#include <linux/module.h>5#include <linux/fs.h>6#include <linux/sched.h>7#include <linux/init.h>8#include <linux/init_task.h>9#include <linux/mqueue.h>10#include <linux/uaccess.h>1112#include <asm/pgtable.h>1314static struct signal_struct init_signals = INIT_SIGNALS(init_signals);15static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);16/*17* Initial thread structure.18*19* We need to make sure that this is 8192-byte aligned due to the20* way process stacks are handled. This is done by making sure21* the linker maps this in the .text segment right after head.S,22* and making head.S ensure the proper alignment.23*24* The things we do for performance..25*/26union thread_union init_thread_union __init_task_data =27{ INIT_THREAD_INFO(init_task) };2829/*30* Initial task structure.31*32* All other task structs will be allocated on slabs in fork.c33*/34struct task_struct init_task = INIT_TASK(init_task);3536EXPORT_SYMBOL(init_task);373839