Reduced memory read batch size to 128 bytes, in ReadTargetMemory Insight worker task, to improve stability (reduce likelihood of debug server (GDB) timeouts)
This commit is contained in:
@@ -15,7 +15,7 @@ namespace Bloom
|
|||||||
* This allows the TargetController to service other commands in-between reads, reducing the likelihood of
|
* This allows the TargetController to service other commands in-between reads, reducing the likelihood of
|
||||||
* command timeouts when we're reading lots of data.
|
* command timeouts when we're reading lots of data.
|
||||||
*/
|
*/
|
||||||
constexpr auto readSize = 256;
|
constexpr auto readSize = 128;
|
||||||
const auto readsRequired = static_cast<std::uint32_t>(
|
const auto readsRequired = static_cast<std::uint32_t>(
|
||||||
std::ceil(static_cast<float>(this->size) / static_cast<float>(readSize))
|
std::ceil(static_cast<float>(this->size) / static_cast<float>(readSize))
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user