Commit b788efb2 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1032, #1343

Remove old references to toku_malloc/realloc/free_counter

git-svn-id: file:///svn/toku/tokudb@8691 c7de825b-a66e-492c-adef-691d508d4ae1
parent 07bd3309
...@@ -110,7 +110,6 @@ void memarena_move_buffers(MEMARENA dest, MEMARENA source) { ...@@ -110,7 +110,6 @@ void memarena_move_buffers(MEMARENA dest, MEMARENA source) {
dest, dest->other_bufs, dest->n_other_bufs, dest, dest->other_bufs, dest->n_other_bufs,
source, source->other_bufs, source->n_other_bufs, source, source->other_bufs, source->n_other_bufs,
errno); errno);
printf("toku_memory_counters: %d %d %d\n", toku_malloc_counter, toku_realloc_counter, toku_free_counter);
new_other_bufs = toku_malloc((dest->n_other_bufs + source->n_other_bufs + 1)*sizeof (char **)); new_other_bufs = toku_malloc((dest->n_other_bufs + source->n_other_bufs + 1)*sizeof (char **));
printf("new_other_bufs=%p errno=%d\n", new_other_bufs, errno); printf("new_other_bufs=%p errno=%d\n", new_other_bufs, errno);
} }
......
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