Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread-rwlocks.c146 rwlock->writerThreadId = 0; in pthread_rwlock_init()
177 if (rwlock->writerThreadId == 0 || rwlock->writerThreadId == thread_id) in read_precondition()
192 if (rwlock->writerThreadId == thread_id) in write_precondition()
275 rwlock->writerThreadId = thread_id; in pthread_rwlock_trywrlock()
304 rwlock->writerThreadId = thread_id; in pthread_rwlock_timedwrlock()
327 if (rwlock->writerThreadId == 0) { in pthread_rwlock_unlock()
335 if (rwlock->writerThreadId != __get_thread_id()) { in pthread_rwlock_unlock()
340 rwlock->writerThreadId = 0; in pthread_rwlock_unlock()
/bionic/libc/include/
Dpthread.h234 int writerThreadId; member