aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-10 21:03:39 -0800
committerbunnei <bunneidev@gmail.com>2023-02-10 21:03:39 -0800
commite79270507b88f20c9d6e0307ead451ad776b528a (patch)
tree824662a3ee379a97c0df7b9991b4d697b061d5dd /src/core/hle/kernel/kernel.h
parentb3a8c0dc495a7cce2de5c7dd8b6db83cf968c541 (diff)
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();