| 60 | } |
| 61 | |
| 62 | int main() { |
| 63 | // Create initial threads. |
| 64 | for (int i = 0; i < NUM_THREADS; ++i) { |
| 65 | printf("make\n"); |
| 66 | CreateThread(i); |
| 67 | } |
| 68 | |
| 69 | emscripten_set_main_loop(loop, 0, 0); |
| 70 | return 0; |
| 71 | } |
nothing calls this directly
no test coverage detected