summaryrefslogtreecommitdiffstats
path: root/usr/include/arch/mips64/klibc/archsetjmp.h
blob: bfca7776995e5906cc640f90aa74c749e4373279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * arch/mips64/include/klibc/archsetjmp.h
 */

#ifndef _KLIBC_ARCHSETJMP_H
#define _KLIBC_ARCHSETJMP_H

struct __jmp_buf {
	unsigned long __s0;
	unsigned long __s1;
	unsigned long __s2;
	unsigned long __s3;
	unsigned long __s4;
	unsigned long __s5;
	unsigned long __s6;
	unsigned long __s7;
	unsigned long __gp;
	unsigned long __sp;
	unsigned long __s8;
	unsigned long __ra;
} __attribute__ ((aligned(8)));

typedef struct __jmp_buf jmp_buf[1];

#endif				/* _KLIBC_ARCHSETJMP_H */