summaryrefslogtreecommitdiff
path: root/src/core/debugger/gdbstub.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/debugger/gdbstub.h')
-rw-r--r--src/core/debugger/gdbstub.h2
1 files changed, 2 insertions, 0 deletions
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:
28private: 28private:
29 void ProcessData(std::vector<DebuggerAction>& actions); 29 void ProcessData(std::vector<DebuggerAction>& actions);
30 void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions); 30 void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions);
31 void HandleVCont(std::string_view command, std::vector<DebuggerAction>& actions);
31 void HandleQuery(std::string_view command); 32 void HandleQuery(std::string_view command);
32 std::vector<char>::const_iterator CommandEnd() const; 33 std::vector<char>::const_iterator CommandEnd() const;
33 std::optional<std::string> DetachCommand(); 34 std::optional<std::string> DetachCommand();
@@ -42,6 +43,7 @@ private:
42 std::unique_ptr<GDBStubArch> arch; 43 std::unique_ptr<GDBStubArch> arch;
43 std::vector<char> current_command; 44 std::vector<char> current_command;
44 std::map<VAddr, u32> replaced_instructions; 45 std::map<VAddr, u32> replaced_instructions;
46 bool no_ack{};
45}; 47};
46 48
47} // namespace Core 49} // namespace Core