summaryrefslogtreecommitdiff
path: root/src/thread/pthread_spin_trylock.c
blob: 5284fdac24d4ae70eb06242131dff16a33c61d90 (plain) (blame)
1
2
3
4
5
6
7
#include "pthread_impl.h"
#include <errno.h>

int pthread_spin_trylock(pthread_spinlock_t *s)
{
	return a_cas(s, 0, EBUSY);
}