summaryrefslogtreecommitdiffstats
path: root/sys/arch/mips64/include/setjmp.h
blob: 2cd201fb85560a20da0e59b2aa47638fa85bb596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*	$OpenBSD: setjmp.h,v 1.4 2018/01/08 16:44:32 visa Exp $	*/

/* Public domain */

#ifndef _MIPS64_SETJMP_H_
#define _MIPS64_SETJMP_H_

#define	_JB_MASK	(1 * REGSZ)
#define	_JB_PC		(2 * REGSZ)
#define	_JB_REGS	(3 * REGSZ)
#define	_JB_FPREGS	(37 * REGSZ)

#define	_JBLEN	83		/* size, in longs, of a jmp_buf */

#endif /* !_MIPS64_SETJMP_H_ */