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