Home
last modified time | relevance | path

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

/art/runtime/base/
Dlocks.h286 static Mutex* allocated_thread_ids_lock_ ACQUIRED_AFTER(allocated_monitor_ids_lock_);
289 static Mutex* modify_ldt_lock_ ACQUIRED_AFTER(allocated_thread_ids_lock_);
Dlocks.cc40 Mutex* Locks::allocated_thread_ids_lock_ = nullptr; member in art::Locks
136 DCHECK(allocated_thread_ids_lock_ != nullptr); in Init()
240 DCHECK(allocated_thread_ids_lock_ == nullptr); in Init()
241 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level); in Init()
/art/runtime/
Dthread_list.h192 void ReleaseThreadId(Thread* self, uint32_t id) REQUIRES(!Locks::allocated_thread_ids_lock_);
212 std::bitset<kMaxThreadId> allocated_ids_ GUARDED_BY(Locks::allocated_thread_ids_lock_);
Dthread_list.cc1428 MutexLock mu(self, *Locks::allocated_thread_ids_lock_); in AllocThreadId()
1440 MutexLock mu(self, *Locks::allocated_thread_ids_lock_); in ReleaseThreadId()