Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_rwlock_wrlock.c
blob: 46a3b3a5b0af073191b21a21e99f6ab0376fc154 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
__pthread_rwlock_wrlock
(
pthread_rwlock_t
*
rw
)
{
return
__pthread_rwlock_timedwrlock
(
rw
,
0
);
}
weak_alias
(
__pthread_rwlock_wrlock
,
pthread_rwlock_wrlock
);