aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-02-11 10:28:50 -0500
committerGitHub <noreply@github.com>2023-02-11 10:28:50 -0500
commit709879cfc102f37f2955503b41863f0d3711a398 (patch)
tree4e28c01246e7b9051b6ae78f54930b31cc306afc /src/core/hle/kernel/kernel.h
parent89c09d639ae92d0df40c68a962fe0683f1a1cd21 (diff)
parente79270507b88f20c9d6e0307ead451ad776b528a (diff)
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:
/// Gets the virtual memory manager for the kernel.
const KMemoryManager& MemoryManager() const;
+ /// Gets the application resource manager.
+ KSystemResource& GetAppSystemResource();
+
+ /// Gets the application resource manager.
+ const KSystemResource& GetAppSystemResource() const;
+
/// Gets the system resource manager.
KSystemResource& GetSystemSystemResource();