Home
last modified time | relevance | path

Searched refs:pausing_thread (Results 1 – 1 of 1) sorted by relevance

/art/openjdkjvmti/
Dalloc_manager.cc61 art::Thread* pausing_thread = allocations_paused_thread_.load(std::memory_order_seq_cst); in PauseForAllocation() local
62 if (LIKELY(pausing_thread == nullptr || pausing_thread == self)) { in PauseForAllocation()
70 pausing_thread = allocations_paused_thread_.load(std::memory_order_seq_cst); in PauseForAllocation()
71 CHECK_NE(pausing_thread, self) << "We should always be setting pausing_thread = self!" in PauseForAllocation()
73 if (pausing_thread != nullptr) { in PauseForAllocation()
75 << "initiated by " << *pausing_thread; in PauseForAllocation()