src/share/vm/memory/binaryTreeDictionary.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/memory/binaryTreeDictionary.cpp	Thu Jan 30 13:10:50 2014
--- new/src/share/vm/memory/binaryTreeDictionary.cpp	Thu Jan 30 13:10:50 2014

*** 1350,1360 **** --- 1350,1360 ---- // . parent and child point to each other // . each node's key correctly related to that of its child(ren) template <class Chunk_t, template <class> class FreeList_t> void BinaryTreeDictionary<Chunk_t, FreeList_t>::verify_tree() const { guarantee(root() == NULL || total_free_blocks() == 0 || ! total_size() != 0, "_total_size shouldn't be 0?"); guarantee(root() == NULL || root()->parent() == NULL, "_root shouldn't have parent"); verify_tree_helper(root()); } template <class Chunk_t, template <class> class FreeList_t>

src/share/vm/memory/binaryTreeDictionary.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File