| 17 | }; |
| 18 | |
| 19 | void *ThreadMain(void *arg) { |
| 20 | emscripten_outf("Thread %d finished, exit()ing", ((Test*)arg)->threadId); |
| 21 | pthread_exit(0); |
| 22 | } |
| 23 | |
| 24 | void RunTest(int test) { |
| 25 | int NUM_THREADS = std::thread::hardware_concurrency(); |
nothing calls this directly
no test coverage detected