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.
This commit is contained in:
Joel Sherrill
2009-07-23 19:05:11 +00:00
parent 5ea6d2e649
commit 2c0d7929bc
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
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> 2009-07-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Add new tests to exercise cases where a * Makefile.am, configure.ac: Add new tests to exercise cases where a

View File

@@ -1,6 +1,7 @@
/* /*
* Simple test program to demonstrate strict order mutex * Simple test program to demonstrate strict order mutex
* *
* $Id$
*/ */
#define CONFIGURE_INIT #define CONFIGURE_INIT
@@ -55,7 +56,6 @@ rtems_task Init(rtems_task_argument ignored)
1, 1,
RTEMS_LOCAL| RTEMS_LOCAL|
RTEMS_SIMPLE_BINARY_SEMAPHORE| RTEMS_SIMPLE_BINARY_SEMAPHORE|
RTEMS_INHERIT_PRIORITY|
RTEMS_PRIORITY, RTEMS_PRIORITY,
0, 0,
&Mutex_id[0]); &Mutex_id[0]);
@@ -68,7 +68,6 @@ rtems_task Init(rtems_task_argument ignored)
1, 1,
RTEMS_LOCAL| RTEMS_LOCAL|
RTEMS_SIMPLE_BINARY_SEMAPHORE| RTEMS_SIMPLE_BINARY_SEMAPHORE|
RTEMS_PRIORITY_CEILING|
RTEMS_PRIORITY, RTEMS_PRIORITY,
1, 1,
&Mutex_id[1]); &Mutex_id[1]);