From 7769fb1b1b910688e76a84c65b2c00059a82ea4a Mon Sep 17 00:00:00 2001 From: Jennifer Averett Date: Thu, 13 Nov 2014 19:15:00 +0100 Subject: smpschedaffinity04: Change semaphore attributes. Change semaphore attributes to prevent semaphore from being locked and never released upon a context switch. --- testsuites/smptests/smpschedaffinity04/init.c | 8 +++----- 1 file 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 ); -- cgit v1.2.3