Removed TC suspension

This commit is contained in:
Nav
2023-05-26 00:23:07 +01:00
parent 4485ee0961
commit 9734ba88e1
14 changed files with 68 additions and 382 deletions

View File

@@ -25,13 +25,13 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
try {
if (Services::ProcessService::isManagedByClion()) {
targetControllerService.suspendTargetController();
// TODO: Force the TC to shutdown.
}
debugSession.connection.writePacket(OkResponsePacket());
} catch (const Exception& exception) {
Logger::error("Failed to suspend TargetController - " + exception.getMessage());
Logger::error("Failed to shut down TargetController - " + exception.getMessage());
debugSession.connection.writePacket(ErrorResponsePacket());
}
}