Browse Source

optimize contended case for pthread_spin_trylock

Rich Felker 14 years ago
parent
commit
b8b85a4272
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/thread/pthread_spin_trylock.c

+ 2 - 1
src/thread/pthread_spin_trylock.c

@@ -2,5 +2,6 @@
 
 int pthread_spin_trylock(pthread_spinlock_t *s)
 {
-	return -a_xchg(s, 1) & EBUSY;
+	if (*s || a_xchg(s, 1)) return EBUSY;
+	return 0;
 }