summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index 6d7a7e754..20d01fc88 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -147,8 +147,7 @@ void Process::PrepareForTermination() {
147 continue; 147 continue;
148 148
149 // TODO(Subv): When are the other running/ready threads terminated? 149 // TODO(Subv): When are the other running/ready threads terminated?
150 ASSERT_MSG(thread->GetStatus() == ThreadStatus::WaitSynchAny || 150 ASSERT_MSG(thread->GetStatus() == ThreadStatus::WaitSynch,
151 thread->GetStatus() == ThreadStatus::WaitSynchAll,
152 "Exiting processes with non-waiting threads is currently unimplemented"); 151 "Exiting processes with non-waiting threads is currently unimplemented");
153 152
154 thread->Stop(); 153 thread->Stop();