diff options
Diffstat (limited to 'include/asm-ppc/sigcontext.h')
-rw-r--r-- | include/asm-ppc/sigcontext.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/asm-ppc/sigcontext.h b/include/asm-ppc/sigcontext.h new file mode 100644 index 000000000000..fc5e358c65f1 --- /dev/null +++ b/include/asm-ppc/sigcontext.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef _ASM_PPC_SIGCONTEXT_H | ||
2 | #define _ASM_PPC_SIGCONTEXT_H | ||
3 | |||
4 | #include <asm/ptrace.h> | ||
5 | |||
6 | |||
7 | struct sigcontext { | ||
8 | unsigned long _unused[4]; | ||
9 | int signal; | ||
10 | unsigned long handler; | ||
11 | unsigned long oldmask; | ||
12 | struct pt_regs *regs; | ||
13 | }; | ||
14 | |||
15 | #endif | ||