Skip to content
Snippets Groups Projects
Commit 5e03ae99 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon: Committed by Walter Lampl
Browse files

IDC: Satisfy some thread warnings

parent 98d51db7
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@
#define EVENTCONTAINERS_IDENTIFIABLECONTAINERBASE_H
#include "EventContainers/IdentifiableCacheBase.h"
#include "CxxUtils/checker_macros.h"
class IdentifiableContainerBase{
......@@ -18,11 +19,11 @@ public:
protected:
EventContainers::IdentifiableCacheBase *m_cacheLink;
bool m_OnlineMode;
mutable std::atomic<bool> m_waitNeeded;
mutable std::atomic<bool> m_waitNeeded ATLAS_THREAD_SAFE; //These mutables are carefully thought out, do not change
typedef EventContainers::IdentifiableCacheBase IdentifiableCacheBase;
mutable std::vector< IdentifierHash > m_waitlist;
mutable std::mutex m_waitMutex;
mutable std::vector<bool> m_mask;
mutable std::vector< IdentifierHash > m_waitlist ATLAS_THREAD_SAFE;
mutable std::mutex m_waitMutex ATLAS_THREAD_SAFE;
mutable std::vector<bool> m_mask ATLAS_THREAD_SAFE;
std::vector<IdentifierHash> GetAllCurrentHashes() const;
void Wait() const;
......
......@@ -20,8 +20,8 @@
namespace EventContainers {
static const void* INVALID = reinterpret_cast<const void*>(IdentifiableCacheBase::INVALIDflag);
static const void* ABORTED = reinterpret_cast<const void*>(IdentifiableCacheBase::ABORTEDflag);
const void* const INVALID = reinterpret_cast<const void*>(IdentifiableCacheBase::INVALIDflag);
const void* const ABORTED = reinterpret_cast<const void*>(IdentifiableCacheBase::ABORTEDflag);
IdentifiableCacheBase::IdentifiableCacheBase (IdentifierHash maxHash,
const IMaker* maker)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment