comparison src/share/vm/gc_implementation/concurrentMarkSweep/vmStructs_cms.hpp @ 6028:f69a5d43dc19

7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary* Summary: Fix naming style to be consistent with the predominant hotspot style. Reviewed-by: ysr, brutisso
author jmasa
date Wed, 25 Apr 2012 09:55:55 -0700
parents 9f059abe8cf2
children da91efe96a93
comparison
equal deleted inserted replaced
6026:9f059abe8cf2 6028:f69a5d43dc19
44 nonstatic_field(FreeChunk, _next, FreeChunk*) \ 44 nonstatic_field(FreeChunk, _next, FreeChunk*) \
45 nonstatic_field(FreeChunk, _prev, FreeChunk*) \ 45 nonstatic_field(FreeChunk, _prev, FreeChunk*) \
46 nonstatic_field(LinearAllocBlock, _word_size, size_t) \ 46 nonstatic_field(LinearAllocBlock, _word_size, size_t) \
47 nonstatic_field(FreeList<FreeChunk>, _size, size_t) \ 47 nonstatic_field(FreeList<FreeChunk>, _size, size_t) \
48 nonstatic_field(FreeList<FreeChunk>, _count, ssize_t) \ 48 nonstatic_field(FreeList<FreeChunk>, _count, ssize_t) \
49 nonstatic_field(BinaryTreeDictionary<FreeChunk>,_totalSize, size_t) \ 49 nonstatic_field(BinaryTreeDictionary<FreeChunk>,_total_size, size_t) \
50 nonstatic_field(CompactibleFreeListSpace, _dictionary, FreeBlockDictionary<FreeChunk>*) \ 50 nonstatic_field(CompactibleFreeListSpace, _dictionary, FreeBlockDictionary<FreeChunk>*) \
51 nonstatic_field(CompactibleFreeListSpace, _indexedFreeList[0], FreeList<FreeChunk>) \ 51 nonstatic_field(CompactibleFreeListSpace, _indexedFreeList[0], FreeList<FreeChunk>) \
52 nonstatic_field(CompactibleFreeListSpace, _smallLinearAllocBlock, LinearAllocBlock) 52 nonstatic_field(CompactibleFreeListSpace, _smallLinearAllocBlock, LinearAllocBlock)
53 53
54 54