diff options
| author | 2022-06-01 20:46:10 -0400 | |
|---|---|---|
| committer | 2022-06-01 20:46:10 -0400 | |
| commit | 858f8ac6d9f39a1be95dc2f5e83c752b725136ad (patch) | |
| tree | 26d5733fe69193e76402bad78b1a3a8b791b6095 /src/core/debugger/debugger_interface.h | |
| parent | Merge pull request #8400 from Docteh/fullscreen_glitch (diff) | |
| parent | core/debugger: Improved stepping mechanism and misc fixes (diff) | |
| download | yuzu-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.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 e6d4c0190..35ba0bc61 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 { |