You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
363 B
23 lines
363 B
19 years ago
|
/*
|
||
18 years ago
|
* arch/um/include/sysdep-i386/archsetjmp.h
|
||
19 years ago
|
*/
|
||
|
|
||
|
#ifndef _KLIBC_ARCHSETJMP_H
|
||
|
#define _KLIBC_ARCHSETJMP_H
|
||
|
|
||
|
struct __jmp_buf {
|
||
|
unsigned int __ebx;
|
||
|
unsigned int __esp;
|
||
|
unsigned int __ebp;
|
||
|
unsigned int __esi;
|
||
|
unsigned int __edi;
|
||
|
unsigned int __eip;
|
||
|
};
|
||
|
|
||
|
typedef struct __jmp_buf jmp_buf[1];
|
||
|
|
||
19 years ago
|
#define JB_IP __eip
|
||
|
#define JB_SP __esp
|
||
|
|
||
19 years ago
|
#endif /* _SETJMP_H */
|