Commit 8830901b authored by Yoni Fogel's avatar Yoni Fogel

Rolled back some debugging code.

git-svn-id: file:///svn/tokudb@2929 c7de825b-a66e-492c-adef-691d508d4ae1
parent 36ded5e2
......@@ -36,11 +36,6 @@ static inline int toku__lt_callback(toku_lock_tree *tree, DB_TXN* txn) {
return tree->lock_callback ? tree->lock_callback(txn, tree) : 0;
}
static void toku_breakpoint(toku_lock_tree* tree) {
assert(tree != NULL);
}
const u_int32_t __toku_default_buflen = 2;
static const DBT __toku_lt_infinity;
......@@ -1286,9 +1281,6 @@ int toku_lt_acquire_range_read_lock(toku_lock_tree* tree, DB_TXN* txn,
r = 0;
cleanup:
if (r == ENOMEM) {
toku_breakpoint(tree);
}
return r;
}
......@@ -1404,9 +1396,6 @@ int toku_lt_acquire_write_lock(toku_lock_tree* tree, DB_TXN* txn,
r = 0;
cleanup:
if (r == ENOMEM) {
toku_breakpoint(tree);
}
return r;
}
......@@ -1474,9 +1463,6 @@ int toku_lt_acquire_range_write_lock(toku_lock_tree* tree, DB_TXN* txn,
r = 0;
cleanup:
if (r == ENOMEM) {
toku_breakpoint(tree);
}
return r;
}
......
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