Sign in
cobalt
/
cobalt.git
/
f9bc0139df6e6eb149345ab9b6ffcc40603fc09f
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_spin_unlock.c
blob: 724d9e0d65d1ad2b535351c1fbfff6a8d927051b [
file
]
#include
"pthread_impl.h"
int
pthread_spin_unlock
(
pthread_spinlock_t
*
s
)
{
a_store
(
s
,
0
);
return
0
;
}