RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / um / include / sysdep-i386 / archsetjmp.h
blob0f312085ce1d26ce7bec6b890d646f4f0194fc14
1 /*
2 * arch/um/include/sysdep-i386/archsetjmp.h
3 */
5 #ifndef _KLIBC_ARCHSETJMP_H
6 #define _KLIBC_ARCHSETJMP_H
8 struct __jmp_buf {
9 unsigned int __ebx;
10 unsigned int __esp;
11 unsigned int __ebp;
12 unsigned int __esi;
13 unsigned int __edi;
14 unsigned int __eip;
17 typedef struct __jmp_buf jmp_buf[1];
19 #define JB_IP __eip
20 #define JB_SP __esp
22 #endif /* _SETJMP_H */