summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-08-07 07:45:18 +0200
committerbunnei <bunneidev@gmail.com>2021-08-07 21:18:47 +0200
commit68eee948758eeddb4f3f091cd89c870e481b278b (patch)
tree00d0687f171ad686ceea0283c157332cce406d1f /src/core/hle/kernel/kernel.h
parentcore: cpu_manager: Use jthread. (diff)
downloadyuzu-68eee948758eeddb4f3f091cd89c870e481b278b.tar
yuzu-68eee948758eeddb4f3f091cd89c870e481b278b.tar.gz
yuzu-68eee948758eeddb4f3f091cd89c870e481b278b.tar.bz2
yuzu-68eee948758eeddb4f3f091cd89c870e481b278b.tar.lz
yuzu-68eee948758eeddb4f3f091cd89c870e481b278b.tar.xz
yuzu-68eee948758eeddb4f3f091cd89c870e481b278b.tar.zst
yuzu-68eee948758eeddb4f3f091cd89c870e481b278b.zip
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 3a6db0b1c..57535433b 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -146,6 +146,9 @@ public:
/// Gets the an instance of the respective physical CPU core.
const Kernel::PhysicalCore& PhysicalCore(std::size_t id) const;
+ /// Gets the current physical core index for the running host thread.
+ std::size_t CurrentPhysicalCoreIndex() const;
+
/// Gets the sole instance of the Scheduler at the current running core.
Kernel::KScheduler* CurrentScheduler();