1
0
forked from fsfw/fsfw

queue map manager: not using std::atomic anymore

This commit is contained in:
2020-07-06 14:09:33 +02:00
parent b61e1df8bc
commit 78283ddbee
2 changed files with 5 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public:
private:
//! External instantiation is forbidden.
QueueMapManager();
std::atomic<uint32_t> queueCounter = 1;
uint32_t queueCounter = 1;
MutexIF* mapLock;
QueueMap queueMap;
static QueueMapManager* mqManagerInstance;