summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-02-11 16:28:50 +0100
committerGitHub <noreply@github.com>2023-02-11 16:28:50 +0100
commit709879cfc102f37f2955503b41863f0d3711a398 (patch)
tree4e28c01246e7b9051b6ae78f54930b31cc306afc /src/core/hle/kernel/kernel.cpp
parentMerge pull request #9768 from merryhime/biquad-rounding (diff)
parentcore: kernel: k_process: Use application system resource. (diff)
downloadyuzu-709879cfc102f37f2955503b41863f0d3711a398.tar
yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.gz
yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.bz2
yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.lz
yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.xz
yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.zst
yuzu-709879cfc102f37f2955503b41863f0d3711a398.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/kernel.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index d9eafe261..5b72eaaa1 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -1146,6 +1146,14 @@ const KMemoryManager& KernelCore::MemoryManager() const {
return *impl->memory_manager;
}
+KSystemResource& KernelCore::GetAppSystemResource() {
+ return *impl->app_system_resource;
+}
+
+const KSystemResource& KernelCore::GetAppSystemResource() const {
+ return *impl->app_system_resource;
+}
+
KSystemResource& KernelCore::GetSystemSystemResource() {
return *impl->sys_system_resource;
}