wdenk | 3ba6865 | 2000-10-11 22:04:29 +0000 | [diff] [blame] | 1 | #ifndef _ASM_PPC_SIGCONTEXT_H |
2 | #define _ASM_PPC_SIGCONTEXT_H | ||||
3 | |||||
4 | #include <asm/ptrace.h> | ||||
5 | |||||
6 | |||||
7 | struct sigcontext_struct { | ||||
8 | unsigned long _unused[4]; | ||||
9 | int signal; | ||||
10 | unsigned long handler; | ||||
11 | unsigned long oldmask; | ||||
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 12 | struct pt_regs *regs; |
wdenk | 3ba6865 | 2000-10-11 22:04:29 +0000 | [diff] [blame] | 13 | }; |
14 | |||||
15 | #endif |