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:
@@ -30,17 +30,5 @@ namespace Bloom::DebugServer::Gdb
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (debugServerConfig.debugServerNode["enableBreakpointCaching"]) {
|
||||
if (YamlUtilities::isCastable<bool>(debugServerConfig.debugServerNode["enableBreakpointCaching"])) {
|
||||
this->breakpointCachingEnabled = debugServerConfig.debugServerNode["enableBreakpointCaching"].as<bool>();
|
||||
|
||||
} else {
|
||||
Logger::error(
|
||||
"Invalid GDB debug server config parameter ('enableBreakpointCaching') provided - value must be "
|
||||
"castable to a boolean. The parameter will be ignored."
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user