diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sysemu/replay.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sysemu/replay.h b/include/sysemu/replay.h index 90bbb5d..172b20c 100644 --- a/include/sysemu/replay.h +++ b/include/sysemu/replay.h @@ -82,10 +82,18 @@ const char *replay_get_filename(void); */ bool replay_reverse_step(void); /* + * Start searching the last breakpoint/watchpoint. + * Used by gdbstub for backwards debugging. + * Returns true if the process successfully started. + */ +bool replay_reverse_continue(void); +/* * Returns true if replay module is processing * reverse_continue or reverse_step request */ bool replay_running_debug(void); +/* Called in reverse debugging mode to collect breakpoint information */ +void replay_breakpoint(void); /* Processing the instructions */ |