Searched refs:pending_writers (Results 1 – 2 of 2) sorted by relevance
121 rwlock->pending_writers = 0; in pthread_rwlock_init()190 …__sync_fetch_and_add(&rwlock->pending_writers, 1); // C++11 memory_order_relaxed (if the futex_wa… in __pthread_rwlock_timedwrlock()192 __sync_fetch_and_sub(&rwlock->pending_writers, 1); // C++11 memory_order_relaxed in __pthread_rwlock_timedwrlock()262 if (__predict_false(rwlock->pending_readers > 0 || rwlock->pending_writers > 0)) { in pthread_rwlock_unlock()272 if (__predict_false(rwlock->pending_readers > 0 || rwlock->pending_writers > 0)) { in pthread_rwlock_unlock()
104 volatile int32_t pending_writers; member