HomeSort by relevance Sort by last modified time
    Searched defs:owner_tid (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.h 35 int owner_tid; // Set only by exclusive owners. member in struct:__tsan::SyncVar
  /bionic/libc/bionic/
pthread_mutex.cpp 116 /* a mutex contains a state value and a owner_tid.
125 * The owner_tid is used only in recursive and errorcheck mutex to hold the mutex owner thread tid.
222 atomic_int owner_tid; member in struct:pthread_mutex_internal_t
225 _Atomic(uint16_t) owner_tid; member in struct:pthread_mutex_internal_t
271 atomic_init(&mutex->owner_tid, 0);
401 // __futex_wait always waits on a 32-bit value. But state is 16-bit. For a normal mutex, the owner_tid
404 // owner_tid value in the value argument for __futex_wait, otherwise we may always get EAGAIN error.
413 static_assert(offsetof(pthread_mutex_internal_t, owner_tid) == 2, "");
415 uint32_t owner_tid = atomic_load_explicit(&mutex->owner_tid, memory_order_relaxed)
    [all...]
  /art/runtime/base/
mutex.cc 119 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
122 owner_tid_(kLogLockContentions ? owner_tid : 0),
126 mutex->GetName(), owner_tid);
230 uint64_t owner_tid,
240 log[slot].owner_tid == blocked_tid) {
249 log[new_slot].owner_tid = owner_tid;
271 uint64_t owner_tid = log[i].owner_tid; local
280 it = most_common_blocker.find(owner_tid);
    [all...]
mutex.h 166 void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked);
174 ContentionLogEntry() : blocked_tid(0), owner_tid(0) {}
176 uint64_t owner_tid; member in struct:art::BaseMutex::ContentionLogEntry
  /art/runtime/
monitor.cc 298 pid_t owner_tid,
308 oss << "monitor contention with owner " << owner_name << " (" << owner_tid << ")"; local
    [all...]

Completed in 202 milliseconds