Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
thread
/
pthread_rwlock_trywrlock.c
blob: bb3d3a992d1f3dd8a4919de9945b7fad75786a6a [
file
]
#include
"pthread_impl.h"
int
pthread_rwlock_trywrlock
(
pthread_rwlock_t
*
rw
)
{
if
(
a_cas
(&
rw
->
_rw_lock
,
0
,
0x7fffffff
))
return
EBUSY
;
return
0
;
}