src/share/vm/runtime/arguments.cpp

changeset 4847
c0f9217203b2
parent 4828
aeb22fdaa14c
parent 4845
1b90c7607451
child 4859
0c039865ef2b
child 4889
cc32ccaaf47f
equal deleted inserted replaced
4836:d26674db4d91 4847:c0f9217203b2
3318 } else if (UseG1GC) { 3318 } else if (UseG1GC) {
3319 set_g1_gc_flags(); 3319 set_g1_gc_flags();
3320 } 3320 }
3321 check_deprecated_gcs(); 3321 check_deprecated_gcs();
3322 check_deprecated_gc_flags(); 3322 check_deprecated_gc_flags();
3323 if (AssumeMP && !UseSerialGC) {
3324 if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
3325 warning("If the number of processors is expected to increase from one, then"
3326 " you should configure the number of parallel GC threads appropriately"
3327 " using -XX:ParallelGCThreads=N");
3328 }
3329 }
3323 #else // INCLUDE_ALL_GCS 3330 #else // INCLUDE_ALL_GCS
3324 assert(verify_serial_gc_flags(), "SerialGC unset"); 3331 assert(verify_serial_gc_flags(), "SerialGC unset");
3325 #endif // INCLUDE_ALL_GCS 3332 #endif // INCLUDE_ALL_GCS
3326 3333
3327 // Set bytecode rewriting flags 3334 // Set bytecode rewriting flags

mercurial