bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
4 deletions
-
src/core/gdbstub/gdbstub.cpp
|
|
@ -1389,10 +1389,9 @@ void SendTrap(Kernel::Thread* thread, int trap) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (!halt_loop || current_thread == thread) { |
|
|
|
|
|
current_thread = thread; |
|
|
|
|
|
SendSignal(thread, trap); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
current_thread = thread; |
|
|
|
|
|
SendSignal(thread, trap); |
|
|
|
|
|
|
|
|
halt_loop = true; |
|
|
halt_loop = true; |
|
|
send_trap = false; |
|
|
send_trap = false; |
|
|
} |
|
|
} |
|
|
|