comparison src/share/vm/gc_implementation/shared/allocationStats.hpp @ 3256:c69b1043dfb1

7036482: clear argument is redundant and unused in cardtable methods Summary: Removed the unused clear argument to various cardtbale methods and unused mod_oop_in_space_iterate method. Unrelated to synopsis, added a pair of clarifying parens in AllocationStats constructor. Reviewed-by: brutisso, jcoomes
author ysr
date Thu, 14 Apr 2011 12:10:15 -0700
parents 1d1603768966
children f75137faa7fe
comparison
equal deleted inserted replaced
3254:59766fd005ff 3256:c69b1043dfb1
74 _bfrSurp = 0; 74 _bfrSurp = 0;
75 _prevSweep = 0; 75 _prevSweep = 0;
76 _beforeSweep = 0; 76 _beforeSweep = 0;
77 _coalBirths = 0; 77 _coalBirths = 0;
78 _coalDeaths = 0; 78 _coalDeaths = 0;
79 _splitBirths = split_birth? 1 : 0; 79 _splitBirths = (split_birth ? 1 : 0);
80 _splitDeaths = 0; 80 _splitDeaths = 0;
81 _returnedBytes = 0; 81 _returnedBytes = 0;
82 } 82 }
83 83
84 AllocationStats() { 84 AllocationStats() {