From e40843a6eca9c47b2f0ca008c42782e096722aa9 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 8 Jun 2019 13:48:18 +0000 Subject: atomic primitives: refactor for coding-style consistency. --- include/ntapi/bits/nt32/nt_atomic_i386_asm__gcc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/ntapi/bits/nt32/nt_atomic_i386_asm__gcc.h') diff --git a/include/ntapi/bits/nt32/nt_atomic_i386_asm__gcc.h b/include/ntapi/bits/nt32/nt_atomic_i386_asm__gcc.h index 002a62a..c8706ae 100644 --- a/include/ntapi/bits/nt32/nt_atomic_i386_asm__gcc.h +++ b/include/ntapi/bits/nt32/nt_atomic_i386_asm__gcc.h @@ -400,7 +400,7 @@ static __inline__ void at_locked_xor_64( static __inline__ void at_store( - volatile intptr_t * dst, + intptr_t volatile * dst, intptr_t val) { __asm__( @@ -414,7 +414,7 @@ static __inline__ void at_store( static __inline__ void at_store_32( - volatile int32_t * dst, + int32_t volatile * dst, int32_t val) { __asm__( @@ -428,7 +428,7 @@ static __inline__ void at_store_32( static __inline__ void at_store_64( - volatile int64_t * dst, + int64_t volatile * dst, int64_t xchg) { int64_t cmp; -- cgit v1.2.3