summaryrefslogtreecommitdiff
path: root/src/core/debugger/debugger_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/debugger/debugger_interface.h')
-rw-r--r--src/core/debugger/debugger_interface.h9
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;
16namespace Core { 16namespace Core {
17 17
18enum class DebuggerAction { 18enum 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
25class DebuggerBackend { 26class DebuggerBackend {