diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-09-11 18:47:37 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-10-15 17:55:16 +0200 |
commit | e05a8c2385a68be6b1f6079c656fa46336546927 (patch) | |
tree | 39a6d0c1955c580f7db66a53fc5777cdc885e4b7 /src/core/hle/kernel/kernel.h | |
parent | Scheduler: Implement Yield Count and Core migration on Thread Preemption. (diff) | |
download | yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.tar yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.tar.gz yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.tar.bz2 yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.tar.lz yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.tar.xz yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.tar.zst yuzu-e05a8c2385a68be6b1f6079c656fa46336546927.zip |
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r-- | src/core/hle/kernel/kernel.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index f9f5bdc88..0fc4d1f36 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h @@ -82,6 +82,12 @@ public: /// Gets the sole instance of the global scheduler const Kernel::GlobalScheduler& GlobalScheduler() const; + /// Gets the sole instance of the system + Core::System& System(); + + /// Gets the sole instance of the system + const Core::System& System() const; + /// Adds a port to the named port table void AddNamedPort(std::string name, SharedPtr<ClientPort> port); |