From afbcac6826988d12d9a874359cab735049c17500 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 22 Apr 2015 03:24:37 -0400 Subject: minor optimization to pthread_spin_trylock 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. --- src/thread/pthread_spin_trylock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/thread/pthread_spin_trylock.c') diff --git a/src/thread/pthread_spin_trylock.c b/src/thread/pthread_spin_trylock.c index 59de695d..5284fdac 100644 --- a/src/thread/pthread_spin_trylock.c +++ b/src/thread/pthread_spin_trylock.c @@ -1,6 +1,7 @@ #include "pthread_impl.h" +#include int pthread_spin_trylock(pthread_spinlock_t *s) { - return -a_swap(s, 1) & EBUSY; + return a_cas(s, 0, EBUSY); } -- cgit v1.2.1