diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-10-12 14:21:51 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-10-15 17:55:24 +0200 |
commit | 25f8606a6dab595eb7a92fce9be32e0489079964 (patch) | |
tree | 66ab40014264b8ef8567831ba438e29dd672b255 /src/core/core_cpu.cpp | |
parent | Kernel_Thread: Eliminate most global accessors. (diff) | |
download | yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.tar yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.tar.gz yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.tar.bz2 yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.tar.lz yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.tar.xz yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.tar.zst yuzu-25f8606a6dab595eb7a92fce9be32e0489079964.zip |
Diffstat (limited to 'src/core/core_cpu.cpp')
-rw-r--r-- | src/core/core_cpu.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core_cpu.cpp b/src/core/core_cpu.cpp index a6f63e437..233ea572c 100644 --- a/src/core/core_cpu.cpp +++ b/src/core/core_cpu.cpp @@ -117,4 +117,8 @@ void Cpu::Reschedule() { scheduler->TryDoContextSwitch(); } +void Cpu::Shutdown() { + scheduler->Shutdown(); +} + } // namespace Core |