Home
last modified time | relevance | path

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

/Zephyr-latest/lib/posix/options/
Drwlock.c54 static inline size_t to_posix_rwlock_idx(pthread_rwlock_t rwlock) in to_posix_rwlock_idx()
59 static struct posix_rwlock *get_posix_rwlock(pthread_rwlock_t rwlock) in get_posix_rwlock()
85 struct posix_rwlock *to_posix_rwlock(pthread_rwlock_t *rwlock) in to_posix_rwlock()
114 int pthread_rwlock_init(pthread_rwlock_t *rwlock, in pthread_rwlock_init()
142 int pthread_rwlock_destroy(pthread_rwlock_t *rwlock) in pthread_rwlock_destroy()
178 int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock) in pthread_rwlock_rdlock()
198 int pthread_rwlock_timedrdlock(pthread_rwlock_t *rwlock, in pthread_rwlock_timedrdlock()
231 int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock) in pthread_rwlock_tryrdlock()
251 int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock) in pthread_rwlock_wrlock()
271 int pthread_rwlock_timedwrlock(pthread_rwlock_t *rwlock, in pthread_rwlock_timedwrlock()
[all …]
/Zephyr-latest/tests/posix/rwlocks/src/
Dmain.c17 static pthread_rwlock_t rwlock; variable