Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_mutex.cpp151 int old_owner = 0; in PIMutexTryLock() local
153 &old_owner, tid, in PIMutexTryLock()
158 if (tid == (old_owner & FUTEX_TID_MASK)) { in PIMutexTryLock()
193 int old_owner = tid; in PIMutexUnlock() local
197 &old_owner, 0, in PIMutexUnlock()
203 old_owner = atomic_load_explicit(&mutex.owner_tid, memory_order_relaxed); in PIMutexUnlock()
206 if (tid != (old_owner & FUTEX_TID_MASK)) { in PIMutexUnlock()
216 if (old_owner == tid) { in PIMutexUnlock()
219 &old_owner, 0, in PIMutexUnlock()
231 int old_owner = 0; in PIMutexDestroy() local
[all …]