Browse Source

arm: Print backtrace on data abort

nce_cpp
GPUCode 2 years ago
committed by t895
parent
commit
a1818cddf6
  1. 2
      src/core/arm/arm_interface.cpp

2
src/core/arm/arm_interface.cpp

@ -201,6 +201,8 @@ void ARM_Interface::Run() {
if (True(hr & HaltReason::DataAbort)) {
if (system.DebuggerEnabled()) {
system.GetDebugger().NotifyThreadWatchpoint(current_thread, *HaltedWatchpoint());
} else {
LogBacktrace();
}
current_thread->RequestSuspend(SuspendType::Debug);
break;

Loading…
Cancel
Save