thermosphere: actually report the debug events

This commit is contained in:
TuxSH
2020-01-31 23:54:42 +00:00
parent fded7fd692
commit 116d0703f4
3 changed files with 8 additions and 5 deletions

View File

@@ -169,7 +169,12 @@ void handleLowerElSyncException(ExceptionStackFrame *frame)
case Exception_SoftwareStepLowerEl:
handleSingleStep(frame, esr);
break;
case Exception_BreakpointLowerEl:
case Exception_WatchpointLowerEl:
case Exception_SoftwareBreakpointA64:
case Exception_SoftwareBreakpointA32:
debugManagerReportEvent(DBGEVENT_EXCEPTION);
break;
default:
DEBUG("Lower EL sync exception, EC = 0x%02llx IL=%llu ISS=0x%06llx\n", (u64)esr.ec, esr.il, esr.iss);
dumpStackFrame(frame, false);