Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
thread
/
pthread_rwlock_trywrlock.c
blob: bb3d3a992d1f3dd8a4919de9945b7fad75786a6a [
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
;
}