xref: /netbsd-src/sys/arch/hppa/include/mcontext.h (revision f648d12d47727113ad5330b0753bb2f2ef8e1045)
1 /*	$NetBSD: mcontext.h,v 1.2 2003/10/08 22:43:01 thorpej Exp $	*/
2 
3 #ifndef _HPPA_MCONTEXT_H_
4 #define _HPPA_MCONTEXT_H_
5 
6 typedef struct mcontext {
7 	int placeholder;
8 } mcontext_t;
9 
10 #define _UC_MACHINE_SP(uc) 0
11 #define _UC_MACHINE_PC(uc) 0
12 #define _UC_MACHINE_INTRV(uc) 0
13 
14 #define	_UC_MACHINE_SET_PC(uc, pc)	/* XXX */
15 
16 #endif /* _HPPA_MCONTEXT_H_ */
17