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
132a4d59
authored
Oct 29, 2015
by
Christian Kern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed code style issues, reported by cpplint
parent
053ca488
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
41 deletions
+28
-41
containers_cpp/include/embb/containers/internal/hazard_pointer-inl.h
+3
-5
containers_cpp/include/embb/containers/internal/hazard_pointer.h
+1
-2
containers_cpp/include/embb/containers/internal/lock_free_mpmc_queue-inl.h
+0
-0
containers_cpp/include/embb/containers/internal/lock_free_stack-inl.h
+1
-2
containers_cpp/test/hazard_pointer_test.cc
+22
-31
containers_cpp/test/hazard_pointer_test.h
+1
-1
No files found.
containers_cpp/include/embb/containers/internal/hazard_pointer-inl.h
View file @
132a4d59
...
...
@@ -79,7 +79,7 @@ namespace internal {
#endif
template
<
typename
GuardType
>
void
HazardPointer
<
GuardType
>::
RemoveGuard
(
int
guard_position
){
void
HazardPointer
<
GuardType
>::
RemoveGuard
(
int
guard_position
)
{
const
unsigned
int
my_thread_id
=
GetObjectLocalThreadIndex
();
// check invariants...
...
...
@@ -240,15 +240,13 @@ namespace internal {
}
}
targetList
[
ii
]
=
guardToCopy
;
}
else
{
}
else
{
// we copied the whole source list, remaining values in the target
// have to be zeroed.
if
(
targetList
[
ii
]
==
undefinedGuard
)
{
// end of target list
break
;
}
else
{
}
else
{
targetList
[
ii
]
=
undefinedGuard
;
}
}
...
...
containers_cpp/include/embb/containers/internal/hazard_pointer.h
View file @
132a4d59
...
...
@@ -43,7 +43,7 @@
// forward declaration for white-box test, used in friend declaration of
// HazardPointer class.
namespace
embb
{
namespace
containers
{
namespace
containers
{
namespace
test
{
class
HazardPointerTest2
;
}
...
...
@@ -114,7 +114,6 @@ namespace internal {
template
<
typename
GuardType
>
class
HazardPointer
{
public
:
/**
* The user of the hazard pointer class has to provide the memory that is
* managed here. The user has to take into account, that releasing of memory
...
...
containers_cpp/include/embb/containers/internal/lock_free_mpmc_queue-inl.h
View file @
132a4d59
containers_cpp/include/embb/containers/internal/lock_free_stack-inl.h
View file @
132a4d59
...
...
@@ -86,8 +86,7 @@ capacity(capacity),
objectPool
(
StackNodeHazardPointer_t
::
ComputeMaximumRetiredObjectCount
(
1
)
+
capacity
),
hazardPointer
(
delete_pointer_callback
,
NULL
,
1
)
{
hazardPointer
(
delete_pointer_callback
,
NULL
,
1
)
{
}
template
<
typename
Type
,
typename
ValuePool
>
...
...
containers_cpp/test/hazard_pointer_test.cc
View file @
132a4d59
...
...
@@ -32,8 +32,7 @@ namespace embb {
namespace
containers
{
namespace
test
{
IntObjectTestPool
::
IntObjectTestPool
(
unsigned
int
pool_size
)
:
poolSize
(
pool_size
)
{
poolSize
(
pool_size
)
{
simplePoolObjects
=
static_cast
<
int
*>
(
embb
::
base
::
Allocation
::
Allocate
(
sizeof
(
int
)
*
pool_size
));
...
...
@@ -42,7 +41,7 @@ poolSize(pool_size)
pool_size
));
for
(
unsigned
int
i
=
0
;
i
!=
pool_size
;
++
i
)
{
//in-place new for each array cell
//
in-place new for each array cell
new
(
&
simplePool
[
i
])
embb
::
base
::
Atomic
<
int
>
;
}
...
...
@@ -56,7 +55,7 @@ IntObjectTestPool::~IntObjectTestPool() {
embb
::
base
::
Allocation
::
Free
(
simplePoolObjects
);
for
(
unsigned
int
i
=
0
;
i
!=
poolSize
;
++
i
)
{
//in-place new for each array cell
//
in-place new for each array cell
simplePool
[
i
].
~
Atomic
();
}
...
...
@@ -164,8 +163,8 @@ void HazardPointerTest::HazardPointerTest1ThreadMethod() {
==
true
&&
allocated_object_from_different_thread
==
allocated_object
)
{
//try to make it probable to get an element from a different thread
//however, can be the same. Try 10000 times to get a different element.
//
try to make it probable to get an element from a different thread
//
however, can be the same. Try 10000 times to get a different element.
if
(
diff_count
++
>
10000
)
{
same
=
true
;
break
;
...
...
@@ -219,7 +218,7 @@ bool HazardPointerTest2::SetRelativeGuards() {
unsigned
int
alreadyGuarded
=
0
;
for
(
unsigned
int
i
=
my_begin
;
i
!=
my_begin
+
guards_per_phread_count_
;
++
i
){
++
i
)
{
if
(
shared_guarded_
[
i
]
!=
0
)
{
alreadyGuarded
++
;
guard_number
++
;
...
...
@@ -234,8 +233,7 @@ bool HazardPointerTest2::SetRelativeGuards() {
if
(
to_guard
==
shared_allocated_
[
i
].
Load
())
{
// guard was successful. Communicate to other threads.
shared_guarded_
[
i
]
=
to_guard
;
}
else
{
}
else
{
// reset the guard, couldn't guard...
hazard_pointer_
->
RemoveGuard
(
guard_number
);
}
...
...
@@ -284,7 +282,7 @@ void HazardPointerTest2::HazardPointerTest2Slave() {
unsigned
int
thread_index
;
embb_internal_thread_index
(
&
thread_index
);
while
(
!
SetRelativeGuards
())
{}
;
while
(
!
SetRelativeGuards
())
{}
}
void
HazardPointerTest2
::
HazardPointerTest2Pre
()
{
...
...
@@ -305,24 +303,21 @@ void HazardPointerTest2::HazardPointerTest2Pre() {
shared_guarded_
=
static_cast
<
embb
::
base
::
Atomic
<
int
*>*>
(
embb
::
base
::
Allocation
::
Allocate
(
sizeof
(
embb
::
base
::
Atomic
<
int
*>
)
*
guaranteed_capacity_pool_
)
);
guaranteed_capacity_pool_
));
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
//in-place new for each array cell
new
(
&
shared_guarded_
[
i
])
embb
::
base
::
Atomic
<
int
*
>
;
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
// in-place new for each array cell
new
(
&
shared_guarded_
[
i
])
embb
::
base
::
Atomic
<
int
*
>
;
}
shared_allocated_
=
static_cast
<
embb
::
base
::
Atomic
<
int
*>*>
(
embb
::
base
::
Allocation
::
Allocate
(
sizeof
(
embb
::
base
::
Atomic
<
int
*>
)
*
guaranteed_capacity_pool_
)
);
guaranteed_capacity_pool_
));
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
//in-place new for each array cell
new
(
&
shared_allocated_
[
i
])
embb
::
base
::
Atomic
<
int
*
>
;
//
in-place new for each array cell
new
(
&
shared_allocated_
[
i
])
embb
::
base
::
Atomic
<
int
*
>
;
}
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
...
...
@@ -358,8 +353,7 @@ void HazardPointerTest2::HazardPointerTest2Post() {
hazard_pointer_
->
thread_local_retired_lists_
[
i2
+
i
*
n_threads
*
guards_per_phread_count_
]
!=
hazard_pointer_
->
thread_local_retired_lists_
[
j2
+
j
*
n_threads
*
guards_per_phread_count_
]
);
[
j2
+
j
*
n_threads
*
guards_per_phread_count_
]);
checks
++
;
}
...
...
@@ -371,8 +365,7 @@ void HazardPointerTest2::HazardPointerTest2Post() {
PT_ASSERT
(
checks
==
n_threads
*
n_threads
*
guards_per_phread_count_
*
(
n_threads
*
n_threads
*
guards_per_phread_count_
-
1
)
);
(
n_threads
*
n_threads
*
guards_per_phread_count_
-
1
));
std
::
vector
<
int
*
>
additionallyAllocated
;
...
...
@@ -415,21 +408,20 @@ void HazardPointerTest2::HazardPointerTest2Post() {
PT_ASSERT
(
hazard_pointer_
->
thread_local_retired_lists_
[
i2
+
i
*
n_threads
*
guards_per_phread_count_
]
!=
additionallyAllocated
[
a
]
);
additionallyAllocated
[
a
]);
}
}
}
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
//in-place new for each array cell
//
in-place new for each array cell
shared_guarded_
[
i
].
~
Atomic
();
}
embb
::
base
::
Allocation
::
Free
(
shared_guarded_
);
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
//in-place new for each array cell
//
in-place new for each array cell
shared_allocated_
[
i
].
~
Atomic
();
}
...
...
@@ -463,8 +455,7 @@ void HazardPointerTest2::HazardPointerTest2ThreadMethod() {
if
(
thread_index
==
current_master_
)
{
HazardPointerTest2Master
();
}
else
{
}
else
{
HazardPointerTest2Slave
();
}
...
...
@@ -476,7 +467,7 @@ void HazardPointerTest2::HazardPointerTest2ThreadMethod() {
int
desired
=
FINISH_MARKER
;
// select thread, responsible for cleanup
if
(
sync1_
.
CompareAndSwap
(
expected
,
desired
))
{
//wipe arrays!
//
wipe arrays!
for
(
unsigned
int
i
=
0
;
i
!=
guaranteed_capacity_pool_
;
++
i
)
{
shared_guarded_
[
i
]
=
0
;
shared_allocated_
[
i
]
=
0
;
...
...
containers_cpp/test/hazard_pointer_test.h
View file @
132a4d59
...
...
@@ -50,7 +50,7 @@ class IntObjectTestPool {
static
const
int
FREE_MARKER
=
0
;
unsigned
int
poolSize
;
IntObjectTestPool
(
unsigned
int
pool_size
);
explicit
IntObjectTestPool
(
unsigned
int
pool_size
);
~
IntObjectTestPool
();
...
...
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