| 447 | } |
| 448 | |
| 449 | static void* usleep_thread(void* args) { |
| 450 | usleep_thread_impl((PoolData2*)args); |
| 451 | return NULL; |
| 452 | } |
| 453 | |
| 454 | static void launch_many_bthreads(PoolData2* data) { |
| 455 | std::vector<bthread_t> tids; |
nothing calls this directly
no test coverage detected