blob: 8f22b317a0f591a0209b8ba42729e1a910464df9 [file] [log] [blame]
#include "threads_impl.h"
int pthread_spin_unlock(pthread_spinlock_t* s) {
atomic_store(s, 0);
return 0;
}