summaryrefslogtreecommitdiff
path: root/src/core/debugger/debugger_interface.h
diff options
context:
space:
mode:
authorGravatar Morph2022-06-01 20:46:10 -0400
committerGravatar GitHub2022-06-01 20:46:10 -0400
commit858f8ac6d9f39a1be95dc2f5e83c752b725136ad (patch)
tree26d5733fe69193e76402bad78b1a3a8b791b6095 /src/core/debugger/debugger_interface.h
parentMerge pull request #8400 from Docteh/fullscreen_glitch (diff)
parentcore/debugger: Improved stepping mechanism and misc fixes (diff)
downloadyuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.gz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.xz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.zip
Merge pull request #8402 from liamwhite/better-step
core/debugger: Improved stepping mechanism and misc fixes
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 e6d4c0190..35ba0bc61 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 {