Last change
on this file was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
333 bytes
|
Rev | Line | |
---|
[e16e8f2] | 1 | /* |
---|
| 2 | * arch/i386/include/klibc/archsetjmp.h |
---|
| 3 | */ |
---|
| 4 | |
---|
| 5 | #ifndef _KLIBC_ARCHSETJMP_H |
---|
| 6 | #define _KLIBC_ARCHSETJMP_H |
---|
| 7 | |
---|
| 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; |
---|
| 15 | }; |
---|
| 16 | |
---|
| 17 | typedef struct __jmp_buf jmp_buf[1]; |
---|
| 18 | |
---|
| 19 | #endif /* _SETJMP_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.