Handling vMustReplyEmpty GDB command packet

This commit is contained in:
Nav
2022-04-08 22:17:22 +01:00
parent 460d8ceb15
commit 26f648e132

View File

@@ -42,6 +42,12 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
return;
}
if (packetString.find("vMustReplyEmpty") == 0) {
Logger::debug("Handling vMustReplyEmpty");
debugSession.connection.writePacket(EmptyResponsePacket());
return;
}
if (packetString.find("qAttached") == 0) {
Logger::debug("Handling qAttached");
debugSession.connection.writePacket(ResponsePacket(std::vector<unsigned char>({1})));