summaryrefslogtreecommitdiffstats
path: root/src/core/debugger/debugger_interface.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-06-02 02:46:10 +0200
committerGitHub <noreply@github.com>2022-06-02 02:46:10 +0200
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
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.gz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.bz2
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.lz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.xz
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.tar.zst
yuzu-858f8ac6d9f39a1be95dc2f5e83c752b725136ad.zip
Diffstat (limited to '')
-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;
namespace Core {
enum class DebuggerAction {
- Interrupt, // Stop emulation as soon as possible.
- Continue, // Resume emulation.
- StepThread, // Step the currently-active thread.
- ShutdownEmulation, // Shut down the emulator.
+ Interrupt, ///< Stop emulation as soon as possible.
+ Continue, ///< Resume emulation.
+ StepThreadLocked, ///< Step the currently-active thread without resuming others.
+ StepThreadUnlocked, ///< Step the currently-active thread and resume others.
+ ShutdownEmulation, ///< Shut down the emulator.
};
class DebuggerBackend {