/*1* arch/score/kernel/init_task.c2*3* Score Processor version.4*5* Copyright (C) 2009 Sunplus Core Technology Co., Ltd.6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17* You should have received a copy of the GNU General Public License18* along with this program; if not, see the file COPYING, or write19* to the Free Software Foundation, Inc.,20* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA21*/2223#include <linux/init_task.h>24#include <linux/mqueue.h>2526static struct signal_struct init_signals = INIT_SIGNALS(init_signals);27static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);2829/*30* Initial thread structure.31*32* We need to make sure that this is THREAD_SIZE aligned due to the33* way process stacks are handled. This is done by having a special34* "init_task" linker map entry..35*/36union thread_union init_thread_union __init_task_data =37{ INIT_THREAD_INFO(init_task) };3839/*40* Initial task structure.41*42* All other task structs will be allocated on slabs in fork.c43*/44struct task_struct init_task = INIT_TASK(init_task);45EXPORT_SYMBOL(init_task);464748