1fc5f73c174ec890da1457bb8bd776f9e1fb3bc2
[musl] / src / thread / pthread_spin_trylock.c
1 #include "pthread_impl.h"
2
3 int pthread_spin_trylock(pthread_spinlock_t *s)
4 {
5         if (*s || a_xchg(s, 1)) return EBUSY;
6         return 0;
7 }