1
0
forked from fsfw/fsfw

modifyData override deleted

is not really thread-safe anyway
This commit is contained in:
2020-05-07 19:23:56 +02:00
parent fe9aa46cf8
commit 9489b7abc1
3 changed files with 2 additions and 17 deletions

View File

@ -40,11 +40,3 @@ inline ReturnValue_t PoolManager<NUMBER_OF_POOLS>::deleteData(uint8_t* buffer,
return status;
}
template<uint8_t NUMBER_OF_POOLS>
inline ReturnValue_t PoolManager<NUMBER_OF_POOLS>::modifyData(
store_address_t packet_id, uint8_t** packet_ptr, size_t* size) {
MutexHelper mutexHelper(mutex,MutexIF::NO_TIMEOUT);
ReturnValue_t status = LocalPool<NUMBER_OF_POOLS>::modifyData(packet_id,
packet_ptr, size);
return status;
}