2000-10-11 22:04:29 +00:00
|
|
|
#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;
|
2008-05-20 14:00:29 +00:00
|
|
|
struct pt_regs *regs;
|
2000-10-11 22:04:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|