We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a1279 commit 7352946Copy full SHA for 7352946
src/hotspot/share/gc/shenandoah/shenandoahRegulatorThread.cpp
@@ -64,7 +64,8 @@ void ShenandoahRegulatorThread::regulate_young_and_old_cycles() {
64
if (mode == ShenandoahGenerationalControlThread::none) {
65
if (should_start_metaspace_gc()) {
66
if (request_concurrent_gc(GLOBAL)) {
67
- log_debug(gc)("Heuristics request for global (unload classes) accepted.");
+ // Some of vmTestbase/metaspace tests depend on following line to count GC cycles
68
+ _global_heuristics->log_trigger("%s", GCCause::to_string(GCCause::_metadata_GC_threshold));
69
}
70
} else {
71
if (_young_heuristics->should_start_gc()) {
0 commit comments