From 2c0d7929bc4e9a77533a81c0d99cd9c0b5573d11 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 23 Jul 2009 19:05:11 +0000 Subject: [PATCH] 2009-07-23 Joel Sherrill * sp36/strict_order_mut.c: Simple binary semaphores cannot have an inheritance protocol since there is no holder associated with them. --- testsuites/sptests/ChangeLog | 5 +++++ testsuites/sptests/sp36/strict_order_mut.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog index d9f36d3d59..c3595b0a38 100644 --- a/testsuites/sptests/ChangeLog +++ b/testsuites/sptests/ChangeLog @@ -1,3 +1,8 @@ +2009-07-23 Joel Sherrill + + * sp36/strict_order_mut.c: Simple binary semaphores cannot have an + inheritance protocol since there is no holder associated with them. + 2009-07-23 Joel Sherrill * Makefile.am, configure.ac: Add new tests to exercise cases where a diff --git a/testsuites/sptests/sp36/strict_order_mut.c b/testsuites/sptests/sp36/strict_order_mut.c index ba81847a6f..1dd5f1a6d8 100644 --- a/testsuites/sptests/sp36/strict_order_mut.c +++ b/testsuites/sptests/sp36/strict_order_mut.c @@ -1,6 +1,7 @@ /* * Simple test program to demonstrate strict order mutex * + * $Id$ */ #define CONFIGURE_INIT @@ -55,7 +56,6 @@ rtems_task Init(rtems_task_argument ignored) 1, RTEMS_LOCAL| RTEMS_SIMPLE_BINARY_SEMAPHORE| - RTEMS_INHERIT_PRIORITY| RTEMS_PRIORITY, 0, &Mutex_id[0]); @@ -68,7 +68,6 @@ rtems_task Init(rtems_task_argument ignored) 1, RTEMS_LOCAL| RTEMS_SIMPLE_BINARY_SEMAPHORE| - RTEMS_PRIORITY_CEILING| RTEMS_PRIORITY, 1, &Mutex_id[1]);