Commit f574339d authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

add db_env_set_checkpoint_callback to the tokuglobals. closes #1695

git-svn-id: file:///svn/toku/tokudb@11323 c7de825b-a66e-492c-adef-691d508d4ae1
parent 384656b6
......@@ -46,7 +46,15 @@ def main():
exceptsymbols = {}
for n in [ "_init", "_fini", "_end", "_edata", "__bss_start" ]:
exceptsymbols[n] = 1
for n in [ "db_env_create", "db_create", "db_strerror", "db_version", "log_compare", "db_env_set_func_fsync", "setup_dlmalloc", "dlfree", "dlmalloc", "dlrealloc", "db_env_set_func_free", "db_env_set_func_malloc", "db_env_set_func_realloc", "db_env_set_func_pwrite", "db_env_set_func_write"]:
for n in [ "db_env_create", "db_create", "db_strerror", "db_version", "log_compare",
"db_env_set_func_fsync",
"db_env_set_func_free",
"db_env_set_func_malloc",
"db_env_set_func_realloc",
"db_env_set_func_pwrite",
"db_env_set_func_write",
"db_env_set_checkpoint_callback",
"setup_dlmalloc", "dlfree", "dlmalloc", "dlrealloc" ]:
exceptsymbols[n] = 1
return checkglobals(libname, exceptsymbols, verbose)
......
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