< prev index next >

src/hotspot/share/jfr/jfr.cpp

Print this page

        

@@ -27,10 +27,11 @@
 #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,5 +113,13 @@
 }
 
 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 >