summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-02 23:26:30 +0200
committerbunnei <bunneidev@gmail.com>2022-10-19 04:13:35 +0200
commitabcc009dff5d98b5a04229f3a82baab23d568244 (patch)
treee51f99cf493425a3cd331ffdaa1b984554e429aa /src/core/hle/kernel/kernel.h
parentcore: hle: kernel: k_interrupt_manager: HandleInterrupt should not depend on current process. (diff)
downloadyuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.gz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.bz2
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.lz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.xz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.zst
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.zip
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:
/// Retrieves a const pointer to the current process.
const KProcess* CurrentProcess() const;
+ /// Closes the current process.
+ void CloseCurrentProcess();
+
/// Retrieves the list of processes.
const std::vector<KProcess*>& GetProcessList() const;