comparison src/share/vm/gc_implementation/concurrentMarkSweep/freeList.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 6432c3bb6240
children d1605aabd0a1
comparison
equal deleted inserted replaced
83:d3cd40645d0d 152:c70a245cad3a
36 36
37 class Mutex; 37 class Mutex;
38 38
39 class FreeList VALUE_OBJ_CLASS_SPEC { 39 class FreeList VALUE_OBJ_CLASS_SPEC {
40 friend class CompactibleFreeListSpace; 40 friend class CompactibleFreeListSpace;
41 friend class VMStructs;
41 friend class printTreeCensusClosure; 42 friend class printTreeCensusClosure;
42 FreeChunk* _head; // List of free chunks 43 FreeChunk* _head; // List of free chunks
43 FreeChunk* _tail; // Tail of list of free chunks 44 FreeChunk* _tail; // Tail of list of free chunks
44 size_t _size; // Size in Heap words of each chunks 45 size_t _size; // Size in Heap words of each chunks
45 ssize_t _count; // Number of entries in list 46 ssize_t _count; // Number of entries in list