InnoDB 5.6.20

This commit is contained in:
Sergei Golubchik 2014-09-11 16:42:54 +02:00
commit 75796d9ecb
51 changed files with 1027 additions and 659 deletions

View file

@ -49,6 +49,8 @@ extern "C" my_bool timed_mutexes;
#ifdef HAVE_WINDOWS_ATOMICS
typedef LONG lock_word_t; /*!< On Windows, InterlockedExchange operates
on LONG variable */
#elif defined(HAVE_ATOMIC_BUILTINS) && !defined(HAVE_ATOMIC_BUILTINS_BYTE)
typedef ulint lock_word_t;
#else
typedef byte lock_word_t;
#endif