Path: blob/master/arch/microblaze/kernel/init_task.c
10817 views
/*1* Copyright (C) 2009 Michal Simek <[email protected]>2* Copyright (C) 2009 PetaLogix3* Copyright (C) 2006 Atmark Techno, Inc.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*/910#include <linux/module.h>11#include <linux/sched.h>12#include <linux/init_task.h>13#include <linux/fs.h>14#include <linux/mqueue.h>1516#include <asm/pgtable.h>1718static struct signal_struct init_signals = INIT_SIGNALS(init_signals);19static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);2021union thread_union init_thread_union __init_task_data =22{ INIT_THREAD_INFO(init_task) };2324struct task_struct init_task = INIT_TASK(init_task);25EXPORT_SYMBOL(init_task);262728