mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* Copyright 2016 The Emscripten Authors. All rights reserved.
|
|
* Emscripten is available under two separate licenses, the MIT license and the
|
|
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#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;
|
|
}
|