mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-09 00:02:17 +03:00
prepare pthread_spin_unlock for archs that need memory barriers
This commit is contained in:
parent
b8b85a4272
commit
d8dc2faf10
@ -2,5 +2,6 @@
|
|||||||
|
|
||||||
int pthread_spin_unlock(pthread_spinlock_t *s)
|
int pthread_spin_unlock(pthread_spinlock_t *s)
|
||||||
{
|
{
|
||||||
return *s = 0;
|
a_store(s, 0);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user