comparison src/share/vm/gc_implementation/parallelScavenge/generationSizer.hpp @ 12351:c49c7f835e8d

8025853: Remove unnecessary uses of GenerationSizer Summary: Removed stray includes and some minor cleanup of GenerationSizer Reviewed-by: tschatzl, jcoomes
author jwilhelm
date Thu, 03 Oct 2013 17:16:23 +0200
parents 9e11762cee52
children 8f07aa079343
comparison
equal deleted inserted replaced
12350:ab68fc0101ce 12351:c49c7f835e8d
38 initialize_size_info(); 38 initialize_size_info();
39 } 39 }
40 40
41 void initialize_flags() { 41 void initialize_flags() {
42 // Do basic sizing work 42 // Do basic sizing work
43 this->TwoGenerationCollectorPolicy::initialize_flags(); 43 TwoGenerationCollectorPolicy::initialize_flags();
44 44
45 // If the user hasn't explicitly set the number of worker
46 // threads, set the count.
47 assert(UseSerialGC || 45 assert(UseSerialGC ||
48 !FLAG_IS_DEFAULT(ParallelGCThreads) || 46 !FLAG_IS_DEFAULT(ParallelGCThreads) ||
49 (ParallelGCThreads > 0), 47 (ParallelGCThreads > 0),
50 "ParallelGCThreads should be set before flag initialization"); 48 "ParallelGCThreads should be set before flag initialization");
51 49