diff options
Diffstat (limited to 'src/core/debugger/debugger_interface.h')
| -rw-r--r-- | src/core/debugger/debugger_interface.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/debugger/debugger_interface.h b/src/core/debugger/debugger_interface.h index 0b357fcb5..6ae3dc091 100644 --- a/src/core/debugger/debugger_interface.h +++ b/src/core/debugger/debugger_interface.h | |||
| @@ -16,10 +16,11 @@ class KThread; | |||
| 16 | namespace Core { | 16 | namespace Core { |
| 17 | 17 | ||
| 18 | enum class DebuggerAction { | 18 | enum class DebuggerAction { |
| 19 | Interrupt, // Stop emulation as soon as possible. | 19 | Interrupt, ///< Stop emulation as soon as possible. |
| 20 | Continue, // Resume emulation. | 20 | Continue, ///< Resume emulation. |
| 21 | StepThread, // Step the currently-active thread. | 21 | StepThreadLocked, ///< Step the currently-active thread without resuming others. |
| 22 | ShutdownEmulation, // Shut down the emulator. | 22 | StepThreadUnlocked, ///< Step the currently-active thread and resume others. |
| 23 | ShutdownEmulation, ///< Shut down the emulator. | ||
| 23 | }; | 24 | }; |
| 24 | 25 | ||
| 25 | class DebuggerBackend { | 26 | class DebuggerBackend { |