blob: 44940cdddf87ddf00acc0be139d16ec439f0987f (
plain)
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
|
#include <stdio.h>
#include <setjmp.h>
static jmp_buf buf;
void second(void) {
printf("second\n");
longjmp(buf, -1);
}
void first(void) {
printf("first\n"); // prints
longjmp(buf, 1); // jumps back to where setjmp was called - making setjmp now
// return 1
}
int main() {
volatile int x = 0;
int jmpval = setjmp(buf);
if (!jmpval) {
x++; // should be properly restored once longjmp jumps back
first(); // when executed, setjmp returns 1
printf("skipped\n"); // does not print
} else if (jmpval == 1) { // when first() jumps back, setjmp returns 1
printf("result: %d %d\n", x, jmpval); // prints
x++;
second(); // when executed, setjmp returns -1
} else if (jmpval == -1) { // when second() jumps back, setjmp returns -1
printf("result: %d %d\n", x, jmpval); // prints
}
return 0;
}
|