Browse Source
Merge pull request #1495 from ogniK5377/break-stop
Stop all threads on svcBreak
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
src/core/hle/kernel/svc.cpp
|
|
|
@ -389,6 +389,12 @@ static void Break(u32 reason, u64 info1, u64 info2) { |
|
|
|
"Emulated program broke execution! reason=0x{:016X}, info1=0x{:016X}, info2=0x{:016X}", |
|
|
|
reason, info1, info2); |
|
|
|
ASSERT(false); |
|
|
|
|
|
|
|
Core::CurrentProcess()->PrepareForTermination(); |
|
|
|
|
|
|
|
// Kill the current thread
|
|
|
|
GetCurrentThread()->Stop(); |
|
|
|
Core::System::GetInstance().PrepareReschedule(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|