Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
dac07844
Commit
dac07844
authored
Aug 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-release
into mysql.com:/Users/kent/mysql/bk/mysql-5.0
parents
0aca86a8
98f8091d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
innobase/include/sync0sync.h
innobase/include/sync0sync.h
+3
-2
innobase/sync/sync0sync.c
innobase/sync/sync0sync.c
+6
-0
No files found.
innobase/include/sync0sync.h
View file @
dac07844
...
...
@@ -522,10 +522,11 @@ extern ibool sync_order_checks_on;
extern
ibool
sync_initialized
;
/* 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_t
mutex_list_mutex
;
extern
mutex_t
mutex_list_mutex
;
#ifndef UNIV_NONINL
...
...
innobase/sync/sync0sync.c
View file @
dac07844
...
...
@@ -141,6 +141,12 @@ sync_thread_t* sync_thread_level_arrays;
/* Mutex protecting sync_thread_level_arrays */
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 */
ibool
sync_order_checks_on
=
FALSE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment