9090e001f2
sigcontext.regs is a userland pointer Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
16 lines
238 B
C
16 lines
238 B
C
#ifndef _ASM_PPC_SIGCONTEXT_H
|
|
#define _ASM_PPC_SIGCONTEXT_H
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
|
|
struct sigcontext {
|
|
unsigned long _unused[4];
|
|
int signal;
|
|
unsigned long handler;
|
|
unsigned long oldmask;
|
|
struct pt_regs __user *regs;
|
|
};
|
|
|
|
#endif
|