/ * CThread */ /
| 586 | */ |
| 587 | /*****************************************************************************/ |
| 588 | void* dummythread(void* param) |
| 589 | { |
| 590 | auto& thread_finished = *(srt::sync::atomic<bool>*)param; |
| 591 | thread_finished = true; |
| 592 | return nullptr; |
| 593 | } |
| 594 | |
| 595 | TEST(SyncThread, Joinable) |
| 596 | { |
nothing calls this directly
no outgoing calls
no test coverage detected