summaryrefslogtreecommitdiff
path: root/src/thread/pthread_spin_lock.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2015-04-22 03:24:37 -0400
committerRich Felker <dalias@aerifal.cx>2015-04-22 03:24:37 -0400
commitafbcac6826988d12d9a874359cab735049c17500 (patch)
tree61a1f9e9066c22003337266d5847079ede7067d5 /src/thread/pthread_spin_lock.c
parent7b1fb0c526936873a260e860ce3bca82113c3d4c (diff)
downloadmusl-afbcac6826988d12d9a874359cab735049c17500.tar.gz
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.
Diffstat (limited to 'src/thread/pthread_spin_lock.c')
-rw-r--r--src/thread/pthread_spin_lock.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/thread/pthread_spin_lock.c b/src/thread/pthread_spin_lock.c
index 0462e0f3..ded2b653 100644
--- a/src/thread/pthread_spin_lock.c
+++ b/src/thread/pthread_spin_lock.c
@@ -1,7 +1,8 @@
#include "pthread_impl.h"
+#include <errno.h>
int pthread_spin_lock(pthread_spinlock_t *s)
{
- while (*(volatile int *)s || a_cas(s, 0, 1)) a_spin();
+ while (*(volatile int *)s || a_cas(s, 0, EBUSY)) a_spin();
return 0;
}