diff options
author | bunnei <[email protected]> | 2021-08-25 20:59:28 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-25 20:59:28 -0700 |
commit | 0c8594b2251cf600afc3a89ecf1114eb3a25f700 (patch) | |
tree | d6f7d065cd8e2f00c85b9749076ef303a705c864 /src/core/core.h | |
parent | 3843995ceb3e20c1d32d790f1d81a2a6c3d49c38 (diff) | |
download | yuzu-mainline-0c8594b2251cf600afc3a89ecf1114eb3a25f700.tar.gz yuzu-mainline-0c8594b2251cf600afc3a89ecf1114eb3a25f700.zip |
Revert "kernel: Various improvements to scheduler"
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index f9116ebb6..715ab88e7 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -205,6 +205,9 @@ public: /// Gets an ARM interface to the CPU core that is currently running [[nodiscard]] const ARM_Interface& CurrentArmInterface() const; + /// Gets the index of the currently running CPU core + [[nodiscard]] std::size_t CurrentCoreIndex() const; + /// Gets the physical core for the CPU core that is currently running [[nodiscard]] Kernel::PhysicalCore& CurrentPhysicalCore(); |