pthread_rwlock_wrlock.c 187 B

12345678
  1. #include "pthread_impl.h"
  2. int __pthread_rwlock_wrlock(pthread_rwlock_t *rw)
  3. {
  4. return __pthread_rwlock_timedwrlock(rw, 0);
  5. }
  6. weak_alias(__pthread_rwlock_wrlock, pthread_rwlock_wrlock);