Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
thread
/
pthread_rwlock_trywrlock.c
blob: 64d9d3121a70989b01cbb5a1324e131765d72a60 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
__pthread_rwlock_trywrlock
(
pthread_rwlock_t
*
rw
)
{
if
(
a_cas
(&
rw
->
_rw_lock
,
0
,
0x7fffffff
))
return
EBUSY
;
return
0
;
}
weak_alias
(
__pthread_rwlock_trywrlock
,
pthread_rwlock_trywrlock
);