blob: 63a372a8d0aca662b9faa1b1c0291e6a4805bda1 [file] [log] [blame]
#include "pthread_impl.h"
#include <errno.h>
int pthread_spin_trylock(pthread_spinlock_t* s) {
return a_cas_shim(s, 0, EBUSY);
}