summaryrefslogtreecommitdiff
path: root/src/thread/pthread_spin_trylock.c
blob: c12696b3010b332706d203faa7e16cad62433bca (plain) (blame)
1
2
3
4
5
6
#include "pthread_impl.h"

int pthread_spin_trylock(pthread_spinlock_t *s)
{
	return -a_xchg(s, 1) & EBUSY;
}