1
0

pthread_spin_lock.c 116 B

1234567
  1. #include "pthread_impl.h"
  2. int pthread_spin_lock(pthread_spinlock_t *s)
  3. {
  4. while (*s || a_xchg(s, 1));
  5. return 0;
  6. }