Home
last modified time | relevance | path

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

/relibc/pthreads-emb/
H A Dpthread_rwlock_destroy.c70 if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_destroy()
78 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_destroy()
90 result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_destroy()
100 pthread_mutex_unlock (&rwl->mtxExclusiveAccess); in pthread_rwlock_destroy()
105 pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_destroy()
113 result2 = pthread_mutex_destroy (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_destroy()
H A Dpthread_rwlock_tryrdlock.c83 if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_tryrdlock()
93 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_tryrdlock()
103 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_tryrdlock()
108 return (pthread_mutex_unlock (&rwl->mtxExclusiveAccess)); in pthread_rwlock_tryrdlock()
H A Dpthread_rwlock_rdlock.c83 if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_rdlock()
93 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_rdlock()
103 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_rdlock()
108 return (pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))); in pthread_rwlock_rdlock()
H A Dpthread_rwlock_timedrdlock.c85 pthread_mutex_timedlock (&(rwl->mtxExclusiveAccess), abstime)) != 0) in pthread_rwlock_timedrdlock()
100 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_timedrdlock()
110 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_timedrdlock()
115 return (pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))); in pthread_rwlock_timedrdlock()
H A Dpthread_rwlock_trywrlock.c83 if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_trywrlock()
91 result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_trywrlock()
108 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_trywrlock()
113 pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))) == 0) in pthread_rwlock_trywrlock()
H A Dpthread_rwlock_wrlock.c83 if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_wrlock()
90 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_wrlock()
H A Dpthread_rwlock_init.c80 result = pthread_mutex_init (&rwl->mtxExclusiveAccess, NULL); in pthread_rwlock_init()
107 (void) pthread_mutex_destroy (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_init()
H A Dpthread_rwlock_timedwrlock.c85 pthread_mutex_timedlock (&(rwl->mtxExclusiveAccess), abstime)) != 0) in pthread_rwlock_timedwrlock()
94 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_timedwrlock()
H A Dpte_rwlock_cancelwrwait.c55 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pte_rwlock_cancelwrwait()
H A Dpthread_rwlock_unlock.c95 result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_unlock()
H A Dimplement.h262 pthread_mutex_t mtxExclusiveAccess; member