summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-07-03 00:04:08 +0200
committerbunnei <bunneidev@gmail.com>2021-07-21 03:54:56 +0200
commit8d755147d8fbe664d78b3e78514b64804505d6d7 (patch)
treed3715c3e72ba30347173f7ad575aadececeed3b3
parenthle: kernel: Ensure current running process is closed. (diff)
downloadyuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.gz
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.bz2
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.lz
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.xz
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.zst
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.zip
-rw-r--r--src/core/hle/kernel/k_process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp
index 87171b1c8..8ead1a769 100644
--- a/src/core/hle/kernel/k_process.cpp
+++ b/src/core/hle/kernel/k_process.cpp
@@ -165,7 +165,7 @@ void KProcess::DecrementThreadCount() {
ASSERT(num_threads > 0);
if (const auto count = --num_threads; count == 0) {
- UNIMPLEMENTED_MSG("Process termination is not implemented!");
+ LOG_WARNING(Kernel, "Process termination is not fully implemented.");
}
}