diff options
Diffstat (limited to 'arch/ppc/include/asm/sigcontext.h')
| -rw-r--r-- | arch/ppc/include/asm/sigcontext.h | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/arch/ppc/include/asm/sigcontext.h b/arch/ppc/include/asm/sigcontext.h new file mode 100644 index 000000000..715c868ab --- /dev/null +++ b/arch/ppc/include/asm/sigcontext.h @@ -0,0 +1,15 @@ +#ifndef _ASM_PPC_SIGCONTEXT_H +#define _ASM_PPC_SIGCONTEXT_H + +#include <asm/ptrace.h> + + +struct sigcontext_struct { +	unsigned long	_unused[4]; +	int		signal; +	unsigned long	handler; +	unsigned long	oldmask; +	struct pt_regs	*regs; +}; + +#endif |