blob: 715c868ab67effe08b3292784bc8431b274bacab [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
6
7struct sigcontext_struct {
8 unsigned long _unused[4];
9 int signal;
10 unsigned long handler;
11 unsigned long oldmask;
Wolfgang Denk53677ef2008-05-20 16:00:29 +020012 struct pt_regs *regs;
wdenk3ba68652000-10-11 22:04:29 +000013};
14
15#endif