-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy path7.10.c
49 lines (41 loc) · 947 Bytes
/
7.10.c
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <setjmp.h>
#include "apue.h"
static void f1(int, int, int, int);
static void f2(void);
static jmp_buf jmpbuffer;
static int globval;
int main() {
int autoval;
register int regival;
volatile int volaval;
static int statval;
globval = 1;
autoval = 2;
regival = 3;
volaval = 4;
statval = 5;
if (setjmp(jmpbuffer) != 0) {
printf("after longjmp:\n");
printf(
"globval = %d, autoval = %d, regival = %d, volaval = %d, "
"statval = %d\n",
globval, autoval, regival, volaval, statval);
exit(0);
}
globval = 95;
autoval = 96;
regival = 97;
volaval = 98;
statval = 99;
f1(autoval, regival, volaval, statval);
exit(0);
}
static void f1(int i, int j, int k, int l) {
printf("in f1():\n");
printf(
"globval = %d, autoval = %d, regival = %d,"
" volaval = %d, statval = %d\n",
globval, i, j, k, l);
f2();
}
static void f2() { longjmp(jmpbuffer, 1); }