summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-23 19:05:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-23 19:05:11 +0000
commit2c0d7929bc4e9a77533a81c0d99cd9c0b5573d11 (patch)
tree177523055f215aae4ba14bd6203224907549a1d3 /testsuites
parent2009-07-23 Josh Switnicki <josh.switnicki@utoronto.ca> (diff)
downloadrtems-2c0d7929bc4e9a77533a81c0d99cd9c0b5573d11.tar.bz2
2009-07-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp36/strict_order_mut.c: Simple binary semaphores cannot have an inheritance protocol since there is no holder associated with them.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/ChangeLog5
-rw-r--r--testsuites/sptests/sp36/strict_order_mut.c3
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,5 +1,10 @@
2009-07-23 Joel Sherrill <joel.sherrill@OARcorp.com>
+ * 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 <joel.sherrill@OARcorp.com>
+
* Makefile.am, configure.ac: Add new tests to exercise cases where a
timer is scheduled from an ISR while it is being scheduled at the
task level.
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]);