diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-06-01 20:46:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 20:46:10 -0400 |
commit | 858f8ac6d9f39a1be95dc2f5e83c752b725136ad (patch) | |
tree | 26d5733fe69193e76402bad78b1a3a8b791b6095 /src/core/debugger/gdbstub.h | |
parent | af418eb6662bcb859e7922105d9ad6ba50dec3ac (diff) | |
parent | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (diff) |
Merge pull request #8402 from liamwhite/better-step
core/debugger: Improved stepping mechanism and misc fixes
Diffstat (limited to 'src/core/debugger/gdbstub.h')
-rw-r--r-- | src/core/debugger/gdbstub.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/debugger/gdbstub.h b/src/core/debugger/gdbstub.h index e58d60719b..aa1f7de6c0 100644 --- a/src/core/debugger/gdbstub.h +++ b/src/core/debugger/gdbstub.h @@ -28,6 +28,7 @@ public: private: void ProcessData(std::vector<DebuggerAction>& actions); void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions); + void HandleVCont(std::string_view command, std::vector<DebuggerAction>& actions); void HandleQuery(std::string_view command); std::vector<char>::const_iterator CommandEnd() const; std::optional<std::string> DetachCommand(); @@ -42,6 +43,7 @@ private: std::unique_ptr<GDBStubArch> arch; std::vector<char> current_command; std::map<VAddr, u32> replaced_instructions; + bool no_ack{}; }; } // namespace Core |