comparison src/share/vm/gc_implementation/concurrentMarkSweep/adaptiveFreeList.cpp @ 20219:f40816c5e359

8026784: Error message in AdaptiveFreeList<Chunk>::verify_stats is wrong Summary: Changed faulty error message in the verification code Reviewed-by: stefank, tschatzl Contributed-by: Andreas Sjoberg <andreas.sjoberg@oracle.com>
author tschatzl
date Mon, 21 Jul 2014 09:40:19 +0200
parents 78bbf4d43a14
children 7848fc12602b
comparison
equal deleted inserted replaced
20218:828056cf311f 20219:f40816c5e359
156 " + coal_births(" SIZE_FORMAT ") + 1 >= " 156 " + coal_births(" SIZE_FORMAT ") + 1 >= "
157 " split_deaths(" SIZE_FORMAT ")" 157 " split_deaths(" SIZE_FORMAT ")"
158 " coal_deaths(" SIZE_FORMAT ")" 158 " coal_deaths(" SIZE_FORMAT ")"
159 " + count(" SSIZE_FORMAT ")", 159 " + count(" SSIZE_FORMAT ")",
160 p2i(this), size(), _allocation_stats.prev_sweep(), _allocation_stats.split_births(), 160 p2i(this), size(), _allocation_stats.prev_sweep(), _allocation_stats.split_births(),
161 _allocation_stats.split_births(), _allocation_stats.split_deaths(), 161 _allocation_stats.coal_births(), _allocation_stats.split_deaths(),
162 _allocation_stats.coal_deaths(), count())); 162 _allocation_stats.coal_deaths(), count()));
163 } 163 }
164 #endif 164 #endif
165 165
166 // Needs to be after the definitions have been seen. 166 // Needs to be after the definitions have been seen.