pthread_spin_lock.c 110 B

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