thermopshere: gdb: rewrite stop point handling

This commit is contained in:
TuxSH
2020-01-23 22:00:39 +00:00
parent 5de05ed8a8
commit 779aeaa538
14 changed files with 94 additions and 388 deletions

View File

@@ -45,6 +45,6 @@ extern SoftwareBreakpointManager g_softwareBreakpointManager;
bool revertAllSoftwareBreakpoints(void);
bool applyAllSoftwareBreakpoints(void);
int addSoftwareBreakpoint(u64 addr, bool persistent);
int removeSoftwareBreakpoint(u64 addr, bool keepPersistent);
int addSoftwareBreakpoint(uintptr_t addr, bool persistent);
int removeSoftwareBreakpoint(uintptr_t addr, bool keepPersistent);
int removeAllSoftwareBreakpoints(bool keepPersistent);