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

10 lines
216 B
C
Vendored

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