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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
f1dfafe7
Commit
f1dfafe7
authored
Dec 24, 2004
by
vtkachenko@intelp4d.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Many files:
tabs replaced ha_innodb.cc: Comments removed
parent
78846b29
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
34 additions
and
30 deletions
+34
-30
innobase/include/que0que.h
innobase/include/que0que.h
+4
-4
innobase/include/sync0rw.h
innobase/include/sync0rw.h
+3
-3
innobase/include/sync0sync.h
innobase/include/sync0sync.h
+6
-6
innobase/include/sync0sync.ic
innobase/include/sync0sync.ic
+2
-2
innobase/row/row0sel.c
innobase/row/row0sel.c
+1
-1
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+1
-1
innobase/sync/sync0rw.c
innobase/sync/sync0rw.c
+2
-2
innobase/sync/sync0sync.c
innobase/sync/sync0sync.c
+6
-6
sql/ha_innodb.cc
sql/ha_innodb.cc
+9
-5
No files found.
innobase/include/que0que.h
View file @
f1dfafe7
innobase/include/sync0rw.h
View file @
f1dfafe7
innobase/include/sync0sync.h
View file @
f1dfafe7
innobase/include/sync0sync.ic
View file @
f1dfafe7
innobase/row/row0sel.c
View file @
f1dfafe7
innobase/srv/srv0srv.c
View file @
f1dfafe7
innobase/sync/sync0rw.c
View file @
f1dfafe7
innobase/sync/sync0sync.c
View file @
f1dfafe7
sql/ha_innodb.cc
View file @
f1dfafe7
...
@@ -5550,7 +5550,9 @@ innodb_mutex_show_status(
...
@@ -5550,7 +5550,9 @@ innodb_mutex_show_status(
Protocol
::
SEND_NUM_ROWS
|
Protocol
::
SEND_EOF
))
Protocol
::
SEND_NUM_ROWS
|
Protocol
::
SEND_EOF
))
DBUG_RETURN
(
TRUE
);
DBUG_RETURN
(
TRUE
);
// mutex_enter(&mutex_list_mutex);
#ifdef MUTEX_PROTECT_TO_BE_ADDED_LATER
mutex_enter
(
&
mutex_list_mutex
);
#endif
mutex
=
UT_LIST_GET_FIRST
(
mutex_list
);
mutex
=
UT_LIST_GET_FIRST
(
mutex_list
);
...
@@ -5572,7 +5574,9 @@ innodb_mutex_show_status(
...
@@ -5572,7 +5574,9 @@ innodb_mutex_show_status(
if
(
protocol
->
write
())
if
(
protocol
->
write
())
{
{
// mutex_exit(&mutex_list_mutex);
#ifdef MUTEX_PROTECT_TO_BE_ADDED_LATER
mutex_exit
(
&
mutex_list_mutex
);
#endif
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
}
}
}
}
...
@@ -5602,12 +5606,12 @@ innodb_mutex_show_status(
...
@@ -5602,12 +5606,12 @@ innodb_mutex_show_status(
if
(
protocol
->
write
())
if
(
protocol
->
write
())
{
{
// mutex_exit(&mutex_list_mutex);
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
}
}
#ifdef MUTEX_PROTECT_TO_BE_ADDED_LATER
// mutex_exit(&mutex_list_mutex);
mutex_exit
(
&
mutex_list_mutex
);
#endif
send_eof
(
thd
);
send_eof
(
thd
);
DBUG_RETURN
(
FALSE
);
DBUG_RETURN
(
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