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
f0ae2511
Commit
f0ae2511
authored
May 20, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: innobase_end(), innobase_flush_logs():
Document the function parameters.
parent
85735995
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
handler/ha_innodb.cc
handler/ha_innodb.cc
+9
-5
No files found.
handler/ha_innodb.cc
View file @
f0ae2511
...
@@ -2207,9 +2207,12 @@ error:
...
@@ -2207,9 +2207,12 @@ error:
Closes an InnoDB database. */
Closes an InnoDB database. */
static
static
int
int
innobase_end
(
handlerton
*
hton
,
ha_panic_function
type
)
innobase_end
(
/*==============*/
/*=========*/
/* out: TRUE if error */
/* out: TRUE if error */
handlerton
*
hton
,
/* in/out: InnoDB handlerton */
ha_panic_function
type
__attribute__
((
unused
)))
/* in: ha_panic() parameter */
{
{
int
err
=
0
;
int
err
=
0
;
...
@@ -2248,9 +2251,10 @@ Flushes InnoDB logs to disk and makes a checkpoint. Really, a commit flushes
...
@@ -2248,9 +2251,10 @@ Flushes InnoDB logs to disk and makes a checkpoint. Really, a commit flushes
the logs, and the name of this function should be innobase_checkpoint. */
the logs, and the name of this function should be innobase_checkpoint. */
static
static
bool
bool
innobase_flush_logs
(
handlerton
*
hton
)
innobase_flush_logs
(
/*================
=====
*/
/*================*/
/* out: TRUE if error */
/* out: TRUE if error */
handlerton
*
hton
)
/* in/out: InnoDB handlerton */
{
{
bool
result
=
0
;
bool
result
=
0
;
...
...
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