Suspend TargetController upon GDB detach, if running under CLion

This commit is contained in:
Nav
2022-09-15 00:33:01 +01:00
parent 753cfd7c11
commit c9a8220500
5 changed files with 68 additions and 6 deletions

View File

@@ -38,12 +38,6 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
return;
}
if (packetString[0] == 'D') {
// Detach packet - there's not really anything we need to do here, so just respond with an OK
debugSession.connection.writePacket(OkResponsePacket());
return;
}
if (packetString.find("vMustReplyEmpty") == 0) {
Logger::debug("Handling vMustReplyEmpty");
debugSession.connection.writePacket(EmptyResponsePacket());