diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-19 10:38:43 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-20 15:52:04 -0500 |
commit | f28f0c23576662fb293defe9b1884d5a6e1bd85c (patch) | |
tree | c648cb81828ef0e904af839690ab308abc66ead7 /arch/x86/ia32 | |
parent | ea499fec48dd771bd92984337fcb57ed4c787e69 (diff) |
x86: Move some signal-handling definitions to a common header
There are some definitions which are duplicated between
kernel/signal.c and ia32/ia32_signal.c; move them to a common header
file.
Rather than adding stuff to existing header files which contain data
structures, create a new header file; hence the slightly odd name
("all the good ones were taken.")
Note: nothing relied on signal_fault() being defined in
<asm/ptrace.h>.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/ia32_signal.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c index 65577698cab2..25d80f3faf2e 100644 --- a/arch/x86/ia32/ia32_signal.c +++ b/arch/x86/ia32/ia32_signal.c | |||
@@ -12,10 +12,8 @@ | |||
12 | #include <linux/mm.h> | 12 | #include <linux/mm.h> |
13 | #include <linux/smp.h> | 13 | #include <linux/smp.h> |
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/signal.h> | ||
16 | #include <linux/errno.h> | 15 | #include <linux/errno.h> |
17 | #include <linux/wait.h> | 16 | #include <linux/wait.h> |
18 | #include <linux/ptrace.h> | ||
19 | #include <linux/unistd.h> | 17 | #include <linux/unistd.h> |
20 | #include <linux/stddef.h> | 18 | #include <linux/stddef.h> |
21 | #include <linux/personality.h> | 19 | #include <linux/personality.h> |
@@ -31,16 +29,10 @@ | |||
31 | #include <asm/proto.h> | 29 | #include <asm/proto.h> |
32 | #include <asm/vdso.h> | 30 | #include <asm/vdso.h> |
33 | #include <asm/sigframe.h> | 31 | #include <asm/sigframe.h> |
32 | #include <asm/sighandling.h> | ||
34 | #include <asm/sys_ia32.h> | 33 | #include <asm/sys_ia32.h> |
35 | 34 | ||
36 | #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP))) | 35 | #define FIX_EFLAGS __FIX_EFLAGS |
37 | |||
38 | #define FIX_EFLAGS (X86_EFLAGS_AC | X86_EFLAGS_OF | \ | ||
39 | X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \ | ||
40 | X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \ | ||
41 | X86_EFLAGS_CF) | ||
42 | |||
43 | void signal_fault(struct pt_regs *regs, void __user *frame, char *where); | ||
44 | 36 | ||
45 | int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) | 37 | int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) |
46 | { | 38 | { |