1
0

pthread_spin_unlock.c 105 B

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