Commit f0ae2511 authored by marko's avatar marko

branches/zip: innobase_end(), innobase_flush_logs():

Document the function parameters.
parent 85735995
...@@ -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;
......
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