/*1* arch/xtensa/kernel/init_task.c2*3* Xtensa Processor version.4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*9* Copyright (C) 2007 Tensilica Inc.10*11* Chris Zankel <[email protected]>12*/1314#include <linux/mm.h>15#include <linux/fs.h>16#include <linux/init.h>17#include <linux/init_task.h>18#include <linux/module.h>19#include <linux/mqueue.h>2021#include <asm/uaccess.h>2223static struct signal_struct init_signals = INIT_SIGNALS(init_signals);24static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);25union thread_union init_thread_union __init_task_data =26{ INIT_THREAD_INFO(init_task) };2728struct task_struct init_task = INIT_TASK(init_task);2930EXPORT_SYMBOL(init_task);313233