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