summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar bunnei2022-10-02 14:26:30 -0700
committerGravatar bunnei2022-10-18 19:13:35 -0700
commitabcc009dff5d98b5a04229f3a82baab23d568244 (patch)
treee51f99cf493425a3cd331ffdaa1b984554e429aa /src/core/hle/kernel/kernel.h
parentcore: hle: kernel: k_interrupt_manager: HandleInterrupt should not depend on ... (diff)
downloadyuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.gz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.xz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.zip
core: hle: kernel: k_process: Improve management of page table & cleanup.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 79e66483e..6eded9539 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -131,6 +131,9 @@ public:
131 /// Retrieves a const pointer to the current process. 131 /// Retrieves a const pointer to the current process.
132 const KProcess* CurrentProcess() const; 132 const KProcess* CurrentProcess() const;
133 133
134 /// Closes the current process.
135 void CloseCurrentProcess();
136
134 /// Retrieves the list of processes. 137 /// Retrieves the list of processes.
135 const std::vector<KProcess*>& GetProcessList() const; 138 const std::vector<KProcess*>& GetProcessList() const;
136 139