9e43f47539d6dad5661936900ffb20e0c9c36b50
[oweals/musl.git] / src / thread / pthread_spin_lock.c
1 #include "pthread_impl.h"
2
3 int pthread_spin_lock(pthread_spinlock_t *s)
4 {
5         while (*s || a_xchg(s, 1));
6         return 0;
7 }