blob: b5d711f94ff85da0f8c28103d7be857635e29010 [file] [log] [blame]
Michal Simek6496a232009-03-27 14:25:26 +01001/*
2 * Copyright (C) 2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
11#include <linux/module.h>
12#include <linux/sched.h>
13#include <linux/init_task.h>
14#include <linux/fs.h>
15#include <linux/mqueue.h>
16
17#include <asm/pgtable.h>
18
19static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
20static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
Michal Simek6496a232009-03-27 14:25:26 +010021
Joe Perchesd200c922009-09-20 18:14:13 -040022union thread_union init_thread_union __init_task_data =
23 { INIT_THREAD_INFO(init_task) };
Michal Simek6496a232009-03-27 14:25:26 +010024
25struct task_struct init_task = INIT_TASK(init_task);
26EXPORT_SYMBOL(init_task);