musl-tcc/src/thread/pthread_spin_trylock.c
2022-03-20 16:48:53 +08:00

8 lines
126 B
C

#include "pthread_impl.h"
#include <errno.h>
int pthread_spin_trylock(pthread_spinlock_t *s)
{
return a_cas(s, 0, EBUSY);
}