GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / microblaze / kernel / init_task.c
blobb5d711f94ff85da0f8c28103d7be857635e29010
1 /*
2 * Copyright (C) 2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
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 */
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>
17 #include <asm/pgtable.h>
19 static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
20 static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
22 union thread_union init_thread_union __init_task_data =
23 { INIT_THREAD_INFO(init_task) };
25 struct task_struct init_task = INIT_TASK(init_task);
26 EXPORT_SYMBOL(init_task);