Home
last modified time | relevance | path

Searched defs:rwlock (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.4.0/lib/posix/
Dpthread_rwlock.c25 int pthread_rwlock_init(pthread_rwlock_t *rwlock, in pthread_rwlock_init()
42 int pthread_rwlock_destroy(pthread_rwlock_t *rwlock) in pthread_rwlock_destroy()
68 int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock) in pthread_rwlock_rdlock()
85 int pthread_rwlock_timedrdlock(pthread_rwlock_t *rwlock, in pthread_rwlock_timedrdlock()
113 int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock) in pthread_rwlock_tryrdlock()
130 int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock) in pthread_rwlock_wrlock()
147 int pthread_rwlock_timedwrlock(pthread_rwlock_t *rwlock, in pthread_rwlock_timedwrlock()
175 int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock) in pthread_rwlock_trywrlock()
190 int pthread_rwlock_unlock(pthread_rwlock_t *rwlock) in pthread_rwlock_unlock()
215 static uint32_t read_lock_acquire(pthread_rwlock_t *rwlock, int32_t timeout) in read_lock_acquire()
[all …]
/Zephyr-Core-3.4.0/tests/posix/common/src/
Dposix_rwlock.c15 pthread_rwlock_t rwlock; variable