< prev index next >

src/hotspot/share/jfr/leakprofiler/leakProfiler.cpp

Print this page
rev 53307 : Backport Shenadoah GC

*** 51,60 **** --- 51,65 ---- if (UseZGC) { log_warning(jfr)("LeakProfiler is currently not supported in combination with ZGC"); return false; } + if (UseShenandoahGC) { + log_warning(jfr)("LeakProfiler is currently not supported in combination with Shenandoah GC"); + return false; + } + assert(!is_running(), "invariant"); assert(sample_count > 0, "invariant"); // schedule the safepoint operation for installing the object sampler StartOperation op(sample_count);
< prev index next >