< prev index next >

src/hotspot/share/jfr/jfr.cpp

Print this page

        

*** 27,36 **** --- 27,37 ---- #include "jfr/leakprofiler/leakProfiler.hpp" #include "jfr/periodic/sampling/jfrThreadSampler.hpp" #include "jfr/recorder/jfrRecorder.hpp" #include "jfr/recorder/checkpoint/jfrCheckpointManager.hpp" #include "jfr/recorder/repository/jfrEmergencyDump.hpp" + #include "jfr/recorder/repository/jfrRepository.hpp" #include "jfr/recorder/service/jfrOptionSet.hpp" #include "jfr/support/jfrThreadLocal.hpp" #include "runtime/java.hpp" bool Jfr::is_enabled() {
*** 112,116 **** --- 113,125 ---- } bool Jfr::on_start_flight_recording_option(const JavaVMOption** option, char* delimiter) { return JfrOptionSet::parse_start_flight_recording_option(option, delimiter); } + + const char* Jfr::get_emergency_dump_path() { + return JfrEmergencyDump::dump_path(); + } + + const char* Jfr::get_repository_path() { + return JfrRepository::get_path(); + }
< prev index next >