iPXE
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
b
d
i
p
s
t
u
v
x
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
arch
i386
include
bits
setjmp.h
Go to the documentation of this file.
1
#ifndef _BITS_SETJMP_H
2
#define _BITS_SETJMP_H
3
4
FILE_LICENCE
( GPL2_OR_LATER_OR_UBDL );
5
6
#include <
stdint.h
>
7
8
/** A jump buffer */
9
typedef
struct
{
10
/** Saved return address */
11
uint32_t
retaddr
;
12
/** Saved stack pointer */
13
uint32_t
stack
;
14
/** Saved %ebx */
15
uint32_t
ebx
;
16
/** Saved %esi */
17
uint32_t
esi
;
18
/** Saved %edi */
19
uint32_t
edi
;
20
/** Saved %ebp */
21
uint32_t
ebp
;
22
}
jmp_buf
[1];
23
24
#endif
/* _BITS_SETJMP_H */
stdint.h
jmp_buf::stack
uint32_t stack
Saved stack pointer.
Definition:
setjmp.h:13
jmp_buf
A jump buffer.
Definition:
setjmp.h:9
jmp_buf::ebp
uint32_t ebp
Saved ebp.
Definition:
setjmp.h:21
jmp_buf::ebx
uint32_t ebx
Saved ebx.
Definition:
setjmp.h:15
uint32_t
unsigned int uint32_t
Definition:
stdint.h:12
jmp_buf::esi
uint32_t esi
Saved esi.
Definition:
setjmp.h:17
FILE_LICENCE
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
jmp_buf::retaddr
uint32_t retaddr
Saved return address.
Definition:
setjmp.h:11
jmp_buf::edi
uint32_t edi
Saved edi.
Definition:
setjmp.h:19
Generated by
1.8.15