mram dump reply

This commit is contained in:
Jakob.Meier
2021-07-31 08:32:57 +02:00
parent 6cd4f6cfe3
commit 926e1e336a
6 changed files with 130 additions and 20 deletions

View File

@ -36,14 +36,14 @@ void ObjectFactory::produceGenericObjects() {
{
PoolManager::LocalPoolConfig poolCfg = {
{100, 16}, {50, 32}, {25, 64}, {15, 128}, {5, 1024}
{100, 16}, {50, 32}, {25, 64}, {15, 128}, {10, 1024}, {5, 2048}
};
new PoolManager(objects::TC_STORE, poolCfg);
}
{
PoolManager::LocalPoolConfig poolCfg = {
{100, 16}, {50, 32}, {25, 64}, {15, 128}, {5, 1024}
{100, 16}, {50, 32}, {25, 64}, {15, 128}, {10, 1024}, {5, 2048}
};
new PoolManager(objects::TM_STORE, poolCfg);
}