| 12 | int live_count = 0; |
| 13 | |
| 14 | void finalize(void* data) { |
| 15 | intptr_t i = (intptr_t)data; |
| 16 | if (i % (iterations / 10) == 0) printf("Finalizing #%" PRIdPTR "...\n", i); |
| 17 | --live_count; |
| 18 | } |
| 19 | |
| 20 | void run_in_store(wasm_store_t* store) { |
| 21 | // Load binary. |
nothing calls this directly
no outgoing calls
no test coverage detected