forked from Imagelibrary/rtems
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:
@@ -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
|
||||||
|
|||||||
@@ -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]);
|
||||||
|
|||||||
Reference in New Issue
Block a user