blob: 5dee3ba415bc70105bd531c349cee88d0742c915 [file] [log] [blame]
wdenk3ba68652000-10-11 22:04:29 +00001#ifndef _ASM_PPC_SIGCONTEXT_H
2#define _ASM_PPC_SIGCONTEXT_H
3
4#include <asm/ptrace.h>
5
wdenk3ba68652000-10-11 22:04:29 +00006struct sigcontext_struct {
7 unsigned long _unused[4];
8 int signal;
9 unsigned long handler;
10 unsigned long oldmask;
Wolfgang Denka1be4762008-05-20 16:00:29 +020011 struct pt_regs *regs;
wdenk3ba68652000-10-11 22:04:29 +000012};
13
14#endif