2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _ASM_PPC_SIGCONTEXT_H
|
|
|
|
#define _ASM_PPC_SIGCONTEXT_H
|
|
|
|
|
|
|
|
#include <asm/ptrace.h>
|
2005-06-06 22:50:08 +00:00
|
|
|
#include <linux/compiler.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct sigcontext {
|
|
|
|
unsigned long _unused[4];
|
|
|
|
int signal;
|
|
|
|
unsigned long handler;
|
|
|
|
unsigned long oldmask;
|
2005-04-25 14:55:57 +00:00
|
|
|
struct pt_regs __user *regs;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|