just hardcode spill option to true

This commit is contained in:
Robin Müller 2023-03-14 19:54:21 +01:00
parent 5250423d1d
commit f84e3284ab
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
#include "fsfw/FSFW.h" #include "fsfw/FSFW.h"
PoolManager::PoolManager(object_id_t setObjectId, const LocalPoolConfig& localPoolConfig, bool spillToHigherPools) PoolManager::PoolManager(object_id_t setObjectId, const LocalPoolConfig& localPoolConfig)
: LocalPool(setObjectId, localPoolConfig, true, spillToHigherPools) { : LocalPool(setObjectId, localPoolConfig, true, true) {
mutex = MutexFactory::instance()->createMutex(); mutex = MutexFactory::instance()->createMutex();
} }

View File

@ -21,7 +21,7 @@
*/ */
class PoolManager : public LocalPool { class PoolManager : public LocalPool {
public: public:
PoolManager(object_id_t setObjectId, const LocalPoolConfig& poolConfig, bool spillToHigherPools); PoolManager(object_id_t setObjectId, const LocalPoolConfig& poolConfig);
/** /**
* @brief In the PoolManager's destructor all allocated memory * @brief In the PoolManager's destructor all allocated memory