From 989d4a7a41f449af0ea09e34bee331a3a3ac8170 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 31 May 2022 14:37:37 -0400 Subject: core/debugger: Improved stepping mechanism and misc fixes --- src/core/debugger/gdbstub.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/debugger/gdbstub.h') diff --git a/src/core/debugger/gdbstub.h b/src/core/debugger/gdbstub.h index b93a3a511..6f8ac2263 100644 --- a/src/core/debugger/gdbstub.h +++ b/src/core/debugger/gdbstub.h @@ -28,6 +28,7 @@ public: private: void ProcessData(std::vector& actions); void ExecuteCommand(std::string_view packet, std::vector& actions); + void HandleVCont(std::string_view command, std::vector& actions); void HandleQuery(std::string_view command); std::vector::const_iterator CommandEnd() const; std::optional DetachCommand(); @@ -42,6 +43,7 @@ private: std::unique_ptr arch; std::vector current_command; std::map replaced_instructions; + bool no_ack{}; }; } // namespace Core -- cgit v1.2.3