1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-30 05:23:50 +03:00

set_lk_max_locks already added to the c++ interface. delete the extra junk. close #230

git-svn-id: file:///svn/tokudb@2468 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska
2008-02-29 18:30:44 +00:00
parent 1c7ca178d2
commit 0c74e90477
2 changed files with 3 additions and 11 deletions

View File

@@ -147,17 +147,13 @@ void DbEnv::set_error_stream(std::ostream *new_error_stream) {
the_env->set_errcall(the_env, toku_db_env_error_stream_c);
}
// locking not yet implemented
int DbEnv::set_lk_max_locks(u_int32_t max_locks) {
int ret = the_env->set_lk_max_locks(the_env, max_locks);
return maybe_throw_error(ret);
}
int DbEnv::set_lk_max_lockers(u_int32_t max_lockers) {
return 0;
int DbEnv::get_lk_max_locks(u_int32_t *max_locks) {
int ret = the_env->get_lk_max_locks(the_env, max_locks);
return maybe_throw_error(ret);
}
int DbEnv::set_lk_max_objects(u_int32_t max_objects) {
return 0;
}