diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-11-21 20:36:41 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-23 04:50:57 -0500 |
commit | 5c9b3a0c7b8be3cdef3d7418f0a49127e7cdc998 (patch) | |
tree | b72e5fdfb7881c8f977a0d795c76f5df3feb2ae8 /arch/x86/kernel/signal_64.c | |
parent | 3ddd972d970fdabbe6515aa2f95e0ef2c8df903d (diff) |
x86: signal: cosmetic unification of including headers
Impact: cleanup
Make the headers portion of signal_32.c and signal_64.c the same.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/signal_64.c')
-rw-r--r-- | arch/x86/kernel/signal_64.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/kernel/signal_64.c b/arch/x86/kernel/signal_64.c index 3d54d366ccb2..c52244ac19fc 100644 --- a/arch/x86/kernel/signal_64.c +++ b/arch/x86/kernel/signal_64.c | |||
@@ -19,17 +19,22 @@ | |||
19 | #include <linux/unistd.h> | 19 | #include <linux/unistd.h> |
20 | #include <linux/stddef.h> | 20 | #include <linux/stddef.h> |
21 | #include <linux/personality.h> | 21 | #include <linux/personality.h> |
22 | #include <linux/compiler.h> | ||
23 | #include <linux/uaccess.h> | 22 | #include <linux/uaccess.h> |
24 | 23 | ||
25 | #include <asm/processor.h> | 24 | #include <asm/processor.h> |
26 | #include <asm/ucontext.h> | 25 | #include <asm/ucontext.h> |
27 | #include <asm/i387.h> | 26 | #include <asm/i387.h> |
27 | #include <asm/vdso.h> | ||
28 | |||
29 | #ifdef CONFIG_X86_64 | ||
28 | #include <asm/proto.h> | 30 | #include <asm/proto.h> |
29 | #include <asm/ia32_unistd.h> | 31 | #include <asm/ia32_unistd.h> |
30 | #include <asm/mce.h> | 32 | #include <asm/mce.h> |
33 | #endif /* CONFIG_X86_64 */ | ||
34 | |||
31 | #include <asm/syscall.h> | 35 | #include <asm/syscall.h> |
32 | #include <asm/syscalls.h> | 36 | #include <asm/syscalls.h> |
37 | |||
33 | #include "sigframe.h" | 38 | #include "sigframe.h" |
34 | 39 | ||
35 | #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP))) | 40 | #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP))) |