thermosphere: gdb/debug: avoid pause/unpause race condition in vCont + bugfix

This commit is contained in:
TuxSH
2020-01-30 01:22:37 +00:00
parent 5dd8e3c129
commit 8dc536cc5b
6 changed files with 39 additions and 15 deletions

View File

@@ -39,9 +39,10 @@ typedef struct IrqManager {
typedef enum ThermosphereSgi {
ThermosphereSgi_ExecuteFunction = 0,
ThermosphereSgi_VgicUpdate = 1,
ThermosphereSgi_DebugPause = 2,
ThermosphereSgi_ReportDebuggerBreak = 3,
ThermosphereSgi_VgicUpdate,
ThermosphereSgi_DebugPause,
ThermosphereSgi_ReportDebuggerBreak,
ThermosphereSgi_DebuggerContinue,
ThermosphereSgi_Max,
} ThermosphereSgi;