diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 11:37:45 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 14:58:25 -0400 |
commit | daea906dd31843edc062faba82cd43c8b720305d (patch) | |
tree | 5bbf09b0674af4c16febe881b365e9e98b0c379c /arch/sh/include/asm | |
parent | 6a32591a4a38948d785a3bb0dac32d5be1f76354 (diff) |
sh: Remove signal translation and exec_domain
As execution domain support is gone we can remove
signal translation from the signal code and remove
exec_domain from thread_info.
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/sh/include/asm')
-rw-r--r-- | arch/sh/include/asm/thread_info.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/include/asm/thread_info.h b/arch/sh/include/asm/thread_info.h index 657c03919627..2afa321157be 100644 --- a/arch/sh/include/asm/thread_info.h +++ b/arch/sh/include/asm/thread_info.h | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | struct thread_info { | 28 | struct thread_info { |
29 | struct task_struct *task; /* main task structure */ | 29 | struct task_struct *task; /* main task structure */ |
30 | struct exec_domain *exec_domain; /* execution domain */ | ||
31 | unsigned long flags; /* low level flags */ | 30 | unsigned long flags; /* low level flags */ |
32 | __u32 status; /* thread synchronous flags */ | 31 | __u32 status; /* thread synchronous flags */ |
33 | __u32 cpu; | 32 | __u32 cpu; |
@@ -56,7 +55,6 @@ struct thread_info { | |||
56 | #define INIT_THREAD_INFO(tsk) \ | 55 | #define INIT_THREAD_INFO(tsk) \ |
57 | { \ | 56 | { \ |
58 | .task = &tsk, \ | 57 | .task = &tsk, \ |
59 | .exec_domain = &default_exec_domain, \ | ||
60 | .flags = 0, \ | 58 | .flags = 0, \ |
61 | .status = 0, \ | 59 | .status = 0, \ |
62 | .cpu = 0, \ | 60 | .cpu = 0, \ |