pthread_spin_lock.c 119 B

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