1/*
2 * BK Id: SCCS/s.sigcontext.h 1.5 05/17/01 18:14:25 cort
3 */
4#ifndef _ASM_PPC_SIGCONTEXT_H
5#define _ASM_PPC_SIGCONTEXT_H
6
7#include <asm/ptrace.h>
8
9
10struct sigcontext_struct {
11	unsigned long	_unused[4];
12	int		signal;
13	unsigned long	handler;
14	unsigned long	oldmask;
15	struct pt_regs 	*regs;
16};
17
18#endif
19