comparison src/share/vm/runtime/arguments.cpp @ 6064:9d679effd28c

7166894: Add gc cause to GC logging for all collectors Reviewed-by: mgerdin, johnc
author brutisso
date Tue, 15 May 2012 10:25:06 +0200
parents f3a4ee95783b
children cdeda3fd141e
comparison
equal deleted inserted replaced
6063:cdfa5139bd58 6064:9d679effd28c
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();