nativity/lib/libc/musl/src/thread/pthread_rwlock_trywrlock.c
David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06:00

10 lines
218 B
C

#include "pthread_impl.h"
int __pthread_rwlock_trywrlock(pthread_rwlock_t *rw)
{
if (a_cas(&rw->_rw_lock, 0, 0x7fffffff)) return EBUSY;
return 0;
}
weak_alias(__pthread_rwlock_trywrlock, pthread_rwlock_trywrlock);