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