< prev index next >

src/hotspot/share/gc/shared/gcInitLogger.cpp

Print this page

        

*** 37,46 **** --- 37,47 ---- print_large_pages(); print_numa(); print_compressed_oops(); print_heap(); print_workers(); + print_gc_specific(); } void GCInitLogger::print() { GCInitLogger init_log; init_log.print_all();
*** 104,113 **** --- 105,118 ---- if (ConcGCThreads > 0) { log_info(gc, init)("Concurrent Workers: %u", ConcGCThreads); } } + void GCInitLogger::print_gc_specific() { + // To allow additional gc specific logging. + } + const char* GCInitLogger::large_pages_support() { if (UseLargePages) { #ifdef LINUX if (UseTransparentHugePages) { return "Enabled (Transparent)";
< prev index next >