mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
10 lines
223 B
C
Vendored
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);
|