Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
thread
/
pthread_spin_trylock.c
blob: 5284fdac24d4ae70eb06242131dff16a33c61d90 [
file
]
#include
"pthread_impl.h"
#include
<errno.h>
int
pthread_spin_trylock
(
pthread_spinlock_t
*
s
)
{
return
a_cas
(
s
,
0
,
EBUSY
);
}