summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJennifer Averett <jennifer.averett@oarcorp.com>2014-11-13 19:15:00 +0100
committerDaniel Hellstrom <daniel@gaisler.com>2014-11-19 16:29:56 +0100
commit49e23a3851ed51fc82fa3f6025623d74cde83453 (patch)
tree6c5b807f8fcc57e460054dd880dea4f9f54ec6b8
parent905cea77d0260e094981f8c0b5f07106d1f9c03b (diff)
smpschedaffinity02: Change semaphore attributes.
Change semaphore attributes to prevent semaphore from being locked and never released upon a context switch.
-rw-r--r--testsuites/smptests/smpschedaffinity02/init.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/testsuites/smptests/smpschedaffinity02/init.c b/testsuites/smptests/smpschedaffinity02/init.c
index a3e0ddf47b..5f22110a24 100644
--- a/testsuites/smptests/smpschedaffinity02/init.c
+++ b/testsuites/smptests/smpschedaffinity02/init.c
@@ -115,6 +115,7 @@ static void task(rtems_task_argument arg)
if (sc == RTEMS_SUCCESSFUL) {
task_data.actual_cpu = rtems_get_current_processor();
task_data.ran = true;
+ test_delay(25);
rtems_semaphore_release(task_sem);
}
}
@@ -140,11 +141,9 @@ static void test(void)
sc = rtems_semaphore_create(
rtems_build_name('S', 'E', 'M', '0'),
1,
- RTEMS_LOCAL |
- RTEMS_SIMPLE_BINARY_SEMAPHORE |
- RTEMS_NO_INHERIT_PRIORITY |
- RTEMS_NO_PRIORITY_CEILING |
- RTEMS_FIFO,
+ RTEMS_BINARY_SEMAPHORE |
+ RTEMS_PRIORITY |
+ RTEMS_PRIORITY_CEILING,
0,
&task_sem
);