Searched refs:ThreadState (Results 1 – 2 of 2) sorted by relevance
34 enum class ThreadState { Starting, Started, Stopping }; enum46 static std::chrono::duration<double> GetMaximumPause(std::atomic<ThreadState>& state) { in GetMaximumPause()51 state.store(ThreadState::Started); in GetMaximumPause()52 while (state.load() != ThreadState::Stopping) { in GetMaximumPause()101 std::atomic<ThreadState> thread_state(ThreadState::Starting); in BM_maximum_pause_impl()104 while (thread_state != ThreadState::Started) { in BM_maximum_pause_impl()110 thread_state = ThreadState::Stopping; in BM_maximum_pause_impl()
13599 Lkotlinx/coroutines/internal/ThreadState;