diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-12-15 17:07:43 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-12-15 17:07:43 +0100 |
commit | 0d28ae37e5cc4a8a3d5e869345c471dc2ea92e96 (patch) | |
tree | ae1740b7c112b8ed44c47815128f24b17fe4478e /include/my_atomic.h | |
parent | e74991d4a62a0064a4538e2edd8636a2d3855480 (diff) | |
download | mariadb-git-0d28ae37e5cc4a8a3d5e869345c471dc2ea92e96.tar.gz |
Fixed 64-bit atomics on Win x86 and removed support for 8 and 16-bit atomic operations
Diffstat (limited to 'include/my_atomic.h')
-rw-r--r-- | include/my_atomic.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/my_atomic.h b/include/my_atomic.h index 4170e45fe8c..23c3dc749ab 100644 --- a/include/my_atomic.h +++ b/include/my_atomic.h @@ -56,11 +56,10 @@ #define intptr void * /** - On most platforms we implement 8-bit, 16-bit, 32-bit and "pointer" - operations. Thus the symbol below is defined by default; platforms - where we leave out 8-bit or 16-bit operations should undefine it. + Currently we don't support 8-bit and 16-bit operations. + It can be added later if needed. */ -#define MY_ATOMIC_HAS_8_16 1 +#undef MY_ATOMIC_HAS_8_16 #ifndef MY_ATOMIC_MODE_RWLOCKS /* |