dm-log-userspace: fix printk format warning
[linux-2.6/mini2440.git] / arch / microblaze / kernel / init_task.c
blob67da22579b62190215d743a2dd33a6c9fe5c0e83
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
23 __attribute__((__section__(".data.init_task"))) =
24 { INIT_THREAD_INFO(init_task) };
26 struct task_struct init_task = INIT_TASK(init_task);
27 EXPORT_SYMBOL(init_task);