use CAS instead of swap since it's lighter for most archs, and keep EBUSY in the lock value so that the old value obtained by CAS can be used directly as the return value for pthread_spin_trylock.
8 lines
126 B
C
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);
|
|
}
|