Put setjmp into a wrap method to avoid compiling error. Any non-volatile, * non-static local variable in the stack frame calling sigsetjmp might be * clobbered by a call to longjmp. */
| 109 | * clobbered by a call to longjmp. |
| 110 | */ |
| 111 | static int huge_wrap_sigsetjmp(void) |
| 112 | { |
| 113 | return sigsetjmp(huge_jmpenv, 1); |
| 114 | } |
| 115 | |
| 116 | static struct sigaction huge_action_old; |
| 117 | static int huge_need_recover; |