fixed PCDU memory leak

This commit is contained in:
2021-02-08 14:12:36 +01:00
parent 41ebbdd15c
commit db04a06bdb
6 changed files with 20 additions and 17 deletions

View File

@ -49,7 +49,8 @@ void ObjectFactory::produceGenericObjects() {
{
PoolManager::LocalPoolConfig poolCfg = {
{100, 16}, {50, 32}, {25, 64}, {15, 128}, {5, 1024}
{ 100, 16 }, { 100, 32 }, { 100, 64 },
{ 100, 128 }, { 50, 256 }, { 50, 512 }, { 50, 1024 }, { 10, 2048 }
};
new PoolManager(objects::IPC_STORE, poolCfg);
}