comparison src/share/vm/gc_implementation/concurrentMarkSweep/binaryTreeDictionary.hpp @ 152:c70a245cad3a

6670684: 4/5 SA command universe did not print out CMS space information Summary: Forward port of Yumin's fix for 6670684 from HSX-11; Yumin verified the port was correct. Reviewed-by: dcubed
author dcubed
date Fri, 09 May 2008 08:55:13 -0700
parents a61af66fc99e
children d1605aabd0a1
comparison
equal deleted inserted replaced
83:d3cd40645d0d 152:c70a245cad3a
128 }; 128 };
129 129
130 const size_t MIN_TREE_CHUNK_SIZE = sizeof(TreeChunk)/HeapWordSize; 130 const size_t MIN_TREE_CHUNK_SIZE = sizeof(TreeChunk)/HeapWordSize;
131 131
132 class BinaryTreeDictionary: public FreeBlockDictionary { 132 class BinaryTreeDictionary: public FreeBlockDictionary {
133 friend class VMStructs;
133 bool _splay; 134 bool _splay;
134 size_t _totalSize; 135 size_t _totalSize;
135 size_t _totalFreeBlocks; 136 size_t _totalFreeBlocks;
136 TreeList* _root; 137 TreeList* _root;
137 138