pthread_spin_init.c 104 B

123456
  1. #include "pthread_impl.h"
  2. int pthread_spin_init(pthread_spinlock_t *s, int shared)
  3. {
  4. return *s = 0;
  5. }