nativity/lib/libc/musl/src/thread/pthread_spin_trylock.c
David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06: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);
}