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