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