Sign in
mojo
/
mojo-tools
/
4446eb0e2d7a3e9bca844dc343aa4094eaae9a97
/
.
/
fusl
/
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
;
}