Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Sherwood
athena
Commits
5e03ae99
Commit
5e03ae99
authored
5 years ago
by
Adam Edward Barton
Committed by
Walter Lampl
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
IDC: Satisfy some thread warnings
parent
98d51db7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Event/EventContainers/EventContainers/IdentifiableContainerBase.h
+5
-4
5 additions, 4 deletions
...entContainers/EventContainers/IdentifiableContainerBase.h
Event/EventContainers/src/IdentifiableCacheBase.cxx
+2
-2
2 additions, 2 deletions
Event/EventContainers/src/IdentifiableCacheBase.cxx
with
7 additions
and
6 deletions
Event/EventContainers/EventContainers/IdentifiableContainerBase.h
+
5
−
4
View file @
5e03ae99
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Event/EventContainers/src/IdentifiableCacheBase.cxx
+
2
−
2
View file @
5e03ae99
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment