-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thomas Gleixner
committed
May 5, 2012
1 parent
fee512f
commit 2ae8a06
Showing
5 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c6ae063aaf3786b9db7f19a90bf4ed8aaebb7f90 | ||
refs/heads/master: a4a2eb490e38aaff61eafcb8cde6725ad1be22ab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include <linux/init_task.h> | ||
#include <linux/export.h> | ||
#include <linux/mqueue.h> | ||
#include <linux/sched.h> | ||
#include <linux/init.h> | ||
#include <linux/fs.h> | ||
#include <linux/mm.h> | ||
|
||
#include <asm/pgtable.h> | ||
#include <asm/uaccess.h> | ||
|
||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals); | ||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | ||
|
||
/* Initial task structure */ | ||
struct task_struct init_task = INIT_TASK(init_task); | ||
EXPORT_SYMBOL(init_task); | ||
|
||
/* | ||
* Initial thread structure. Alignment of this is handled by a special | ||
* linker map entry. | ||
*/ | ||
union thread_union init_thread_union __init_task_data = | ||
{ INIT_THREAD_INFO(init_task) }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters