Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
toki
components
freertos-portable
Commits
92994332
Commit
92994332
authored
Mar 12, 2020
by
Johannes Wiesboeck
Committed by
Oliver Horst
Aug 15, 2020
Browse files
Fixed barrier synchronization.
parent
3cd4d108
Changes
1
Hide whitespace changes
Inline
Side-by-side
GCC/ARM_CA53_64_BIT/src/freertos+/hal/cpu.c
View file @
92994332
...
...
@@ -59,7 +59,7 @@ void vHalCpuBarrier()
* cores again. */
while
(
1
)
{
if
(
atomic_load
(
&
ulCpuBarrierMask1
)
^
mask2
!=
(
AMP_CORE_MASK_U64
)
)
if
(
atomic_load
(
&
ulCpuBarrierMask1
)
^
mask2
!=
0
)
{
vHalCpuWaitForEvent
();
}
...
...
Write
Preview
Supports
Markdown
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