summaryrefslogtreecommitdiff
path: root/release/src/linux/linux/include/asm-ppc/sigcontext.h
blob: 73353e849ec700fc8ac36d89c1a467fa85b6f7b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * BK Id: SCCS/s.sigcontext.h 1.5 05/17/01 18:14:25 cort
 */
#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;
	struct pt_regs 	*regs;
};

#endif