< prev index next >

src/share/vm/memory/binaryTreeDictionary.cpp

Print this page
rev 8978 : imported patch remove_err_msg

*** 706,717 **** void BinaryTreeDictionary<Chunk_t, FreeList_t>::insert_chunk_in_tree(Chunk_t* fc) { TreeList<Chunk_t, FreeList_t> *curTL, *prevTL; size_t size = fc->size(); assert((size >= min_size()), ! err_msg(SIZE_FORMAT " is too small to be a TreeChunk<Chunk_t, FreeList_t> " SIZE_FORMAT, ! size, min_size())); if (FLSVerifyDictionary) { verify_tree(); } fc->clear_next(); --- 706,717 ---- void BinaryTreeDictionary<Chunk_t, FreeList_t>::insert_chunk_in_tree(Chunk_t* fc) { TreeList<Chunk_t, FreeList_t> *curTL, *prevTL; size_t size = fc->size(); assert((size >= min_size()), ! SIZE_FORMAT " is too small to be a TreeChunk<Chunk_t, FreeList_t> " SIZE_FORMAT, ! size, min_size()); if (FLSVerifyDictionary) { verify_tree(); } fc->clear_next();
< prev index next >