Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
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
;
}