/*1* Copyright (C) 2004-2006 Atmel Corporation2*3* This program is free software; you can redistribute it and/or modify4* it under the terms of the GNU General Public License version 2 as5* published by the Free Software Foundation.6*/7#include <linux/module.h>8#include <linux/fs.h>9#include <linux/sched.h>10#include <linux/init_task.h>11#include <linux/mqueue.h>1213#include <asm/pgtable.h>1415static struct signal_struct init_signals = INIT_SIGNALS(init_signals);16static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);17/*18* Initial thread structure. Must be aligned on an 8192-byte boundary.19*/20union thread_union init_thread_union __init_task_data =21{ INIT_THREAD_INFO(init_task) };2223/*24* Initial task structure.25*26* All other task structs will be allocated on slabs in fork.c27*/28struct task_struct init_task = INIT_TASK(init_task);2930EXPORT_SYMBOL(init_task);313233