| 313 | } |
| 314 | |
| 315 | void wasm_rt_init_thread(void) { |
| 316 | #if WASM_RT_STACK_EXHAUSTION_HANDLER |
| 317 | os_allocate_and_install_altstack(); |
| 318 | #endif |
| 319 | } |
| 320 | |
| 321 | void wasm_rt_free_thread(void) { |
| 322 | #if WASM_RT_STACK_EXHAUSTION_HANDLER |
no test coverage detected