Removed breakpoint caching in GDB server - it's not needed!
GDB can be configured to avoid needlessly updating breakpoints on the target
This commit is contained in:
@@ -54,13 +54,6 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
|
||||
Logger::debug("Handling RemoveBreakpoint packet");
|
||||
|
||||
try {
|
||||
if (debugSession.serverConfig.breakpointCachingEnabled) {
|
||||
debugSession.breakpointAddressesPendingRemoval.insert(this->address);
|
||||
debugSession.connection.writePacket(OkResponsePacket());
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Logger::debug("Removing breakpoint at address " + std::to_string(this->address));
|
||||
|
||||
targetControllerService.removeBreakpoint(TargetBreakpoint(this->address));
|
||||
|
||||
Reference in New Issue
Block a user