summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJennifer Averett <jennifer.averett@oarcorp.com>2014-11-12 08:42:13 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2014-11-20 13:47:03 -0600
commit1960dcb9b252576a1362ddd0c57940595c44e4a6 (patch)
treefe27dacb2113dedea5ae9d628f521d76310bdabc
parentsmpschedaffinity02: Change semaphore attributes. (diff)
downloadrtems-1960dcb9b252576a1362ddd0c57940595c44e4a6.tar.bz2
smpschedaffinity04: Change semaphore attributes.
Change semaphore attributes to prevent semaphore from being locked and never released upon a context switch.
-rw-r--r--testsuites/smptests/smpschedaffinity04/init.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/testsuites/smptests/smpschedaffinity04/init.c b/testsuites/smptests/smpschedaffinity04/init.c
index bdfc56c1a9..f5ccab8833 100644
--- a/testsuites/smptests/smpschedaffinity04/init.c
+++ b/testsuites/smptests/smpschedaffinity04/init.c
@@ -85,11 +85,9 @@ static void test(void)
sc = rtems_semaphore_create(
rtems_build_name('S', 'E', 'M', '0'),
1, /* initial count = 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
);