summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 6c9c936b5..6af772831 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -9,6 +9,7 @@
#include "common/common_types.h"
#include "core/memory.h"
#include "core/perf_stats.h"
+#include "core/telemetry_session.h"
class EmuWindow;
class ARM_Interface;
@@ -80,6 +81,14 @@ public:
return cpu_core != nullptr;
}
+ /**
+ * Returns a reference to the telemetry session for this emulation session.
+ * @returns Reference to the telemetry session.
+ */
+ Core::TelemetrySession& TelemetrySession() const {
+ return *telemetry_session;
+ }
+
/// Prepare the core emulation for a reschedule
void PrepareReschedule();
@@ -117,6 +126,9 @@ private:
/// When true, signals that a reschedule should happen
bool reschedule_pending{};
+ /// Telemetry session for this emulation session
+ std::unique_ptr<Core::TelemetrySession> telemetry_session;
+
static System s_instance;
};
@@ -124,4 +136,8 @@ inline ARM_Interface& CPU() {
return System::GetInstance().CPU();
}
+inline TelemetrySession& Telemetry() {
+ return System::GetInstance().TelemetrySession();
+}
+
} // namespace Core