Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
thread
/
pthread_spin_unlock.c
blob: 3d34efd22c767f2a51174f52f7829926a69c5b41 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_spin_unlock
(
pthread_spinlock_t
*
s
)
{
a_store
(
s
,
0
);
return
0
;
}