zig/lib/libc/wasi/thread-stub/pthread_rwlock_trywrlock.c
2025-08-20 19:18:11 +02:00

10 lines
223 B
C
Vendored

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