| 93 | } |
| 94 | |
| 95 | extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int) { |
| 96 | for (int i = 0; i < count; i++) |
| 97 | (*fn)(i); // stacksize doesn't make sense in a non-threaded context |
| 98 | } |
| 99 | |
| 100 | #elif defined(_WIN32) |
| 101 |
no test coverage detected