mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-08 07:42:09 +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)
|
||||
{
|
||||
return *s = 0;
|
||||
a_store(s, 0);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user