diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-10-10 18:17:09 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-10-10 18:17:09 -0400 |
commit | 867b1822f30a76cb9c8342da29eb28ed75908fa9 (patch) | |
tree | 9c0f489e301ae87ce0296adab65c488d926ac4b9 /arch/powerpc | |
parent | 08b996d180323775d5457944eefbb8a51ea72539 (diff) | |
download | musl-867b1822f30a76cb9c8342da29eb28ed75908fa9.tar.gz musl-867b1822f30a76cb9c8342da29eb28ed75908fa9.tar.xz musl-867b1822f30a76cb9c8342da29eb28ed75908fa9.zip |
add explicit barrier operation to internal atomic.h API
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/atomic.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/atomic.h b/arch/powerpc/atomic.h index 1c50361e..f706543a 100644 --- a/arch/powerpc/atomic.h +++ b/arch/powerpc/atomic.h @@ -78,7 +78,9 @@ static inline void a_store(volatile int *p, int x) : "=m"(*p) : "r"(x) : "memory" ); } -static inline void a_spin() +#define a_spin a_barrier + +static inline void a_barrier() { a_cas(&(int){0}, 0, 0); } |