mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 11:41:29 +00:00
8 lines
105 B
C
8 lines
105 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_spin_unlock(pthread_spinlock_t *s)
|
|
{
|
|
a_store(s, 0);
|
|
return 0;
|
|
}
|