summaryrefslogtreecommitdiff
path: root/ft/recover.h
diff options
context:
space:
mode:
authorYoni Fogel <yoni@tokutek.com>2012-07-25 20:49:56 +0000
committerYoni Fogel <yoni@tokutek.com>2013-04-17 00:01:01 -0400
commitc527ba297f51755c3bae22e3d2b48f18d51e60b3 (patch)
treedc1348249742e83444184654029b4b190e9209b5 /ft/recover.h
parent36242fd401ce5a2e668ee2763ef47f8b810b0e7e (diff)
downloadmariadb-git-c527ba297f51755c3bae22e3d2b48f18d51e60b3.tar.gz
refs #5081 Replace all usage:
BOOL->bool FALSE->false TRUE->true u_int*_t->uint*_t Also poisoned all of the variables git-svn-id: file:///svn/toku/tokudb@46157 c7de825b-a66e-492c-adef-691d508d4ae1
Diffstat (limited to 'ft/recover.h')
-rw-r--r--ft/recover.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ft/recover.h b/ft/recover.h
index c800aa1155c..d65cec73486 100644
--- a/ft/recover.h
+++ b/ft/recover.h
@@ -35,8 +35,8 @@ int tokudb_recover (DB_ENV *env,
// Effect: Check the tokudb logs to determine whether or not we need to run recovery.
// If the log is empty or if there is a clean shutdown at the end of the log, then we
// dont need to run recovery.
-// Returns: TRUE if we need recovery, otherwise FALSE.
-int tokudb_needs_recovery(const char *logdir, BOOL ignore_empty_log);
+// Returns: true if we need recovery, otherwise false.
+int tokudb_needs_recovery(const char *logdir, bool ignore_empty_log);
// Return 0 if recovery log exists, ENOENT if log is missing
int tokudb_recover_log_exists(const char * log_dir);