Home | History | Annotate | Line # | Download | only in include
mcontext.h revision 1.2
      1  1.2  thorpej /*	$NetBSD: mcontext.h,v 1.2 2003/10/08 22:43:01 thorpej Exp $	*/
      2  1.1      chs 
      3  1.1      chs #ifndef _HPPA_MCONTEXT_H_
      4  1.1      chs #define _HPPA_MCONTEXT_H_
      5  1.1      chs 
      6  1.1      chs typedef struct mcontext {
      7  1.1      chs 	int placeholder;
      8  1.1      chs } mcontext_t;
      9  1.1      chs 
     10  1.1      chs #define _UC_MACHINE_SP(uc) 0
     11  1.2  thorpej #define _UC_MACHINE_PC(uc) 0
     12  1.2  thorpej #define _UC_MACHINE_INTRV(uc) 0
     13  1.2  thorpej 
     14  1.2  thorpej #define	_UC_MACHINE_SET_PC(uc, pc)	/* XXX */
     15  1.1      chs 
     16  1.1      chs #endif /* _HPPA_MCONTEXT_H_ */
     17