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