From: Oliver Kurth Date: Fri, 15 Sep 2017 18:23:27 +0000 (-0700) Subject: Change to shared header file unrelated to open-vm-tools. X-Git-Tag: stable-10.2.0~326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bc03fbb6c41be9f501b409a8391af5d63ecebdb;p=thirdparty%2Fopen-vm-tools.git Change to shared header file unrelated to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/vm_atomic.h b/open-vm-tools/lib/include/vm_atomic.h index e18bf1a71..1fc3b0764 100644 --- a/open-vm-tools/lib/include/vm_atomic.h +++ b/open-vm-tools/lib/include/vm_atomic.h @@ -247,7 +247,7 @@ typedef struct Atomic_uint64 { } Atomic_uint64 ALIGNED(8); #if defined(__GNUC__) && defined(VM_64BIT) && \ - (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 || defined(VM_ARM_64)) + (defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16) || defined(VM_ARM_64)) typedef struct Atomic_uint128 { volatile __int128 value; } Atomic_uint128 ALIGNED(16); @@ -482,7 +482,7 @@ CMPXCHG1B(volatile uint8 *ptr, // IN/OUT *----------------------------------------------------------------------------- */ #if defined(__GNUC__) && defined(VM_64BIT) && \ - (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 || defined(VM_ARM_64)) + (defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16) || defined(VM_ARM_64)) static INLINE __int128 Atomic_ReadIfEqualWrite128(Atomic_uint128 *ptr, // IN/OUT __int128 oldVal, // IN