comparison src/share/vm/runtime/arguments.cpp @ 6065:cdeda3fd141e

Merge
author jcoomes
date Fri, 18 May 2012 10:27:13 -0700
parents 35e504cb49a6 9d679effd28c
children f9d57285de70 d2a62e0f25eb
comparison
equal deleted inserted replaced
6058:de0cc3dd9f10 6065:cdeda3fd141e
3090 if (PrintGCDetails) { 3090 if (PrintGCDetails) {
3091 // Turn on -verbose:gc options as well 3091 // Turn on -verbose:gc options as well
3092 PrintGC = true; 3092 PrintGC = true;
3093 } 3093 }
3094 3094
3095 if (!JDK_Version::is_gte_jdk18x_version()) {
3096 // To avoid changing the log format for 7 updates this flag is only
3097 // true by default in JDK8 and above.
3098 if (FLAG_IS_DEFAULT(PrintGCCause)) {
3099 FLAG_SET_DEFAULT(PrintGCCause, false);
3100 }
3101 }
3102
3095 // Set object alignment values. 3103 // Set object alignment values.
3096 set_object_alignment(); 3104 set_object_alignment();
3097 3105
3098 #ifdef SERIALGC 3106 #ifdef SERIALGC
3099 force_serial_gc(); 3107 force_serial_gc();