xref: /haiku/src/system/libroot/posix/arch/x86/setjmp_internal.h (revision 8cc146385fabd319e8b1bb9b0d03eb0be2192aa0)
1 /*
2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
4 */
5 #ifndef SETJMP_INTERNAL_H
6 #define SETJMP_INTERNAL_H
7 
8 /* These are the fields of the __jmp_regs structure */
9 
10 #define JMP_REGS_EBX	0
11 #define JMP_REGS_ESI	4
12 #define JMP_REGS_EDI	8
13 #define JMP_REGS_EBP	12
14 #define JMP_REGS_ESP	16
15 #define JMP_REGS_PC		20
16 
17 #include <asm_defs.h>
18 
19 #endif	/* SETJMP_INTERNAL_H */
20