summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpipi01/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-04-28 14:31:10 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-05-20 09:01:15 +0200
commit577293f0a959b5368c073d51f3404c57b3680d14 (patch)
treeb7a65ec24fa9c01c721f7e0e5283636d1bf35b01 /testsuites/smptests/smpipi01/init.c
parentscore: Remove unused SMP_MESSAGE_TEST (diff)
downloadrtems-577293f0a959b5368c073d51f3404c57b3680d14.tar.bz2
score: Add _SMP_Synchronize()
Diffstat (limited to '')
-rw-r--r--testsuites/smptests/smpipi01/init.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuites/smptests/smpipi01/init.c b/testsuites/smptests/smpipi01/init.c
index 18d96dafaf..3cc7a13e2d 100644
--- a/testsuites/smptests/smpipi01/init.c
+++ b/testsuites/smptests/smpipi01/init.c
@@ -18,7 +18,6 @@
#include <rtems/score/smpimpl.h>
#include <rtems/score/smpbarrier.h>
-#include <rtems/counter.h>
#include <rtems.h>
#include <stdio.h>
@@ -195,10 +194,12 @@ static void test_send_message_flood(
}
for (cpu_index = 0; cpu_index < cpu_count; ++cpu_index) {
+ Per_CPU_Control *cpu_self;
uint32_t i;
- /* Wait 1us so that all outstanding messages have been processed */
- rtems_counter_delay_nanoseconds(1000000);
+ cpu_self = _Thread_Dispatch_disable();
+ _SMP_Synchronize();
+ _Thread_Dispatch_enable(cpu_self);
for (i = 0; i < cpu_count; ++i) {
if (i != cpu_index) {