Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d3a090c3
authored
Apr 13, 2015
by
Tobias Fuchs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
containers_cpp: reactivated reclamation condition, adjusted node pool size in WaitFreeMPMCQueue
parent
a0d83966
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
containers_cpp/include/embb/containers/internal/wait_free_mpmc_queue-inl.h
+26
-5
No files found.
containers_cpp/include/embb/containers/internal/wait_free_mpmc_queue-inl.h
View file @
d3a090c3
...
...
@@ -163,9 +163,12 @@ WaitFreeMPMCQueue(size_t capacity)
// Node pool size, with respect to the maximum number of
// retired nodes not eligible for reuse due to hazard pointers:
node_pool_size
(
//
numThreads caused trouble here
//
Nodes in hazard pointers' retired lists
(
hp
.
GetRetiredListMaxSize
()
*
embb
::
base
::
Thread
::
GetThreadsMaxCount
())
+
// Nodes guarded in operation descriptions
embb
::
base
::
Thread
::
GetThreadsMaxCount
()
+
// Actual capacity + 1 sentinel node
max_size_
+
1
),
nodePool
(
node_pool_size
,
nullNode
)
{
// Assert width of binary representation of operation description
...
...
@@ -504,17 +507,19 @@ HelpFinishDequeue() {
hp
.
GuardPointer
(
0
,
firstIdx
);
Node_t
&
first
=
nodePool
[
firstIdx
];
index_t
nextIdx
=
first
.
NextPoolIdx
();
// Guard and head->next:
// Guard and head->next
// Actually not necessary, as head->next will only change from Undefined
// to a node index value, but not back to Undefined.
hp
.
GuardPointer
(
1
,
nextIdx
);
if
(
nextIdx
!=
nodePool
[
firstIdx
].
NextPoolIdx
())
{
return
;
}
index_t
accessorId
=
first
.
DequeueAID
().
Load
();
if
(
accessorId
!=
Node_t
::
UndefinedIndex
)
{
// head.DeqeueueAID is set to the accessor id that won the last CAS
// in HelpDequeue
OperationDesc
curOp
(
operationDescriptions
[
accessorId
].
Load
());
if
(
firstIdx
==
headIdx
.
Load
()
&&
// This check is missing in the original publication but required
// to validate head->next:
nextIdx
==
first
.
NextPoolIdx
()
&&
nextIdx
!=
Node_t
::
UndefinedIndex
)
{
// Set state of helped operation to NONPENDING:
OperationDesc
newOp
(
...
...
@@ -570,7 +575,9 @@ template<
typename
Type
,
class
NodeAllocator
,
class
OpAllocator
,
class
ValuePool
>
void
WaitFreeMPMCQueue
<
Type
,
NodeAllocator
,
OpAllocator
,
ValuePool
>::
DeleteNodeCallback
(
index_t
releasedNodeIndex
)
{
if
(
!
NodeIsPending
(
releasedNodeIndex
))
{
nodePool
.
Free
(
static_cast
<
int
>
(
releasedNodeIndex
));
}
}
template
<
...
...
@@ -580,6 +587,20 @@ GetCapacity() {
return
max_size_
;
}
template
<
typename
Type
,
class
NodeAllocator
,
class
OpAllocator
,
class
ValuePool
>
inline
bool
WaitFreeMPMCQueue
<
Type
,
NodeAllocator
,
OpAllocator
,
ValuePool
>::
NodeIsPending
(
index_t
nodeIdx
)
{
for
(
unsigned
int
accessorId
=
0
;
accessorId
<
num_states
;
++
accessorId
)
{
if
(
OperationDesc
(
operationDescriptions
[
accessorId
].
Load
()).
NodeIndex
==
nodeIdx
)
{
return
true
;
}
}
return
false
;
}
template
<
typename
Type
,
class
NodeAllocator
,
class
OpAllocator
,
class
ValuePool
>
inline
bool
WaitFreeMPMCQueue
<
Type
,
NodeAllocator
,
OpAllocator
,
ValuePool
>::
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment