summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index d2ceae950..3499f8b90 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -148,6 +148,9 @@ public:
148 /// Gets the an instance of the respective physical CPU core. 148 /// Gets the an instance of the respective physical CPU core.
149 const Kernel::PhysicalCore& PhysicalCore(std::size_t id) const; 149 const Kernel::PhysicalCore& PhysicalCore(std::size_t id) const;
150 150
151 /// Gets the current physical core index for the running host thread.
152 std::size_t CurrentPhysicalCoreIndex() const;
153
151 /// Gets the sole instance of the Scheduler at the current running core. 154 /// Gets the sole instance of the Scheduler at the current running core.
152 Kernel::KScheduler* CurrentScheduler(); 155 Kernel::KScheduler* CurrentScheduler();
153 156