synccall: add separate exit_sem to fix thread release logic bug
[musl.git] / src / thread / pthread_rwlock_rdlock.c
blob8546c07d2e790cb0874586e9212a6001e3b85794
1 #include "pthread_impl.h"
3 int __pthread_rwlock_rdlock(pthread_rwlock_t *rw)
5 return __pthread_rwlock_timedrdlock(rw, 0);
8 weak_alias(__pthread_rwlock_rdlock, pthread_rwlock_rdlock);