| 12 | class ThreadManager { |
| 13 | public: |
| 14 | ThreadManager(int num_threads) |
| 15 | : alive_threads_(num_threads), start_stop_barrier_(num_threads) {} |
| 16 | |
| 17 | Mutex& GetBenchmarkMutex() const RETURN_CAPABILITY(benchmark_mutex_) { |
| 18 | return benchmark_mutex_; |
nothing calls this directly
no outgoing calls
no test coverage detected