simplify pthread tsd key handling
[oweals/musl.git] / src / thread / pthread_spin_trylock.c
index 1fc5f73c174ec890da1457bb8bd776f9e1fb3bc2..c12696b3010b332706d203faa7e16cad62433bca 100644 (file)
@@ -2,6 +2,5 @@
 
 int pthread_spin_trylock(pthread_spinlock_t *s)
 {
-       if (*s || a_xchg(s, 1)) return EBUSY;
-       return 0;
+       return -a_xchg(s, 1) & EBUSY;
 }