Commit dac07844 authored by unknown's avatar unknown

Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-release

into mysql.com:/Users/kent/mysql/bk/mysql-5.0

parents 0aca86a8 98f8091d
...@@ -522,10 +522,11 @@ extern ibool sync_order_checks_on; ...@@ -522,10 +522,11 @@ extern ibool sync_order_checks_on;
extern ibool sync_initialized; extern ibool sync_initialized;
/* Global list of database mutexes (not OS mutexes) created. */ /* Global list of database mutexes (not OS mutexes) created. */
UT_LIST_BASE_NODE_T(mutex_t) mutex_list; typedef UT_LIST_BASE_NODE_T(mutex_t) ut_list_base_node_t;
extern ut_list_base_node_t mutex_list;
/* Mutex protecting the mutex_list variable */ /* Mutex protecting the mutex_list variable */
mutex_t mutex_list_mutex; extern mutex_t mutex_list_mutex;
#ifndef UNIV_NONINL #ifndef UNIV_NONINL
......
...@@ -141,6 +141,12 @@ sync_thread_t* sync_thread_level_arrays; ...@@ -141,6 +141,12 @@ sync_thread_t* sync_thread_level_arrays;
/* Mutex protecting sync_thread_level_arrays */ /* Mutex protecting sync_thread_level_arrays */
mutex_t sync_thread_mutex; mutex_t sync_thread_mutex;
/* Global list of database mutexes (not OS mutexes) created. */
ut_list_base_node_t mutex_list;
/* Mutex protecting the mutex_list variable */
mutex_t mutex_list_mutex;
/* Latching order checks start when this is set TRUE */ /* Latching order checks start when this is set TRUE */
ibool sync_order_checks_on = FALSE; ibool sync_order_checks_on = FALSE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment