comparison src/share/vm/memory/collectorPolicy.cpp @ 12831:087f02e22fc2

8025854: Use "young gen" instead of "eden" Summary: Changed a few descriptions and variable names to young gen. Reviewed-by: tschatzl, jcoomes
author jwilhelm
date Fri, 04 Oct 2013 22:08:37 +0200
parents 9b4d0569f2f4
children 85c1ca43713f
comparison
equal deleted inserted replaced
12830:9b4d0569f2f4 12831:087f02e22fc2
228 if (NewSize < 3 * _min_alignment) { 228 if (NewSize < 3 * _min_alignment) {
229 // make sure there room for eden and two survivor spaces 229 // make sure there room for eden and two survivor spaces
230 vm_exit_during_initialization("Too small new size specified"); 230 vm_exit_during_initialization("Too small new size specified");
231 } 231 }
232 if (SurvivorRatio < 1 || NewRatio < 1) { 232 if (SurvivorRatio < 1 || NewRatio < 1) {
233 vm_exit_during_initialization("Invalid heap ratio specified"); 233 vm_exit_during_initialization("Invalid young gen ratio specified");
234 } 234 }
235 } 235 }
236 236
237 void TwoGenerationCollectorPolicy::initialize_flags() { 237 void TwoGenerationCollectorPolicy::initialize_flags() {
238 GenCollectorPolicy::initialize_flags(); 238 GenCollectorPolicy::initialize_flags();