1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include <setjmp.h>
#include <stdio.h>
typedef struct {
jmp_buf* jmp;
} jmp_state;
void stack_manipulate_func(jmp_state* s, int level) {
jmp_buf buf;
printf("Entering stack_manipulate_func, level: %d\n", level);
if (level == 0) {
s->jmp = &buf;
if (setjmp(*(s->jmp)) == 0) {
printf("Setjmp normal execution path, level: %d\n", level);
stack_manipulate_func(s, level + 1);
} else {
printf("Setjmp error execution path, level: %d\n", level);
}
} else {
printf("Perform longjmp at level %d\n", level);
longjmp(*(s->jmp), 1);
}
printf("Exiting stack_manipulate_func, level: %d\n", level);
}
int main(int argc, char* argv[]) {
jmp_state s;
s.jmp = NULL;
stack_manipulate_func(&s, 0);
return 0;
}
|