Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
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
);