summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar liamwhite2023-02-11 10:28:50 -0500
committerGravatar GitHub2023-02-11 10:28:50 -0500
commit709879cfc102f37f2955503b41863f0d3711a398 (patch)
tree4e28c01246e7b9051b6ae78f54930b31cc306afc /src/core/hle/kernel/kernel.h
parentMerge pull request #9768 from merryhime/biquad-rounding (diff)
parentcore: kernel: k_process: Use application system resource. (diff)
downloadyuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.gz
yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.xz
yuzu-709879cfc102f37f2955503b41863f0d3711a398.zip
Merge pull request #9773 from bunnei/fix-process-resource
core: kernel: k_process: Use application system resource.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 5f52e1e95..af0ae0e98 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -246,6 +246,12 @@ public:
246 /// Gets the virtual memory manager for the kernel. 246 /// Gets the virtual memory manager for the kernel.
247 const KMemoryManager& MemoryManager() const; 247 const KMemoryManager& MemoryManager() const;
248 248
249 /// Gets the application resource manager.
250 KSystemResource& GetAppSystemResource();
251
252 /// Gets the application resource manager.
253 const KSystemResource& GetAppSystemResource() const;
254
249 /// Gets the system resource manager. 255 /// Gets the system resource manager.
250 KSystemResource& GetSystemSystemResource(); 256 KSystemResource& GetSystemSystemResource();
251 257