forked from Imagelibrary/rtems
2009-07-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* src/irq-generic.c: Priority inheritance on simple binary semaphores makes no sense and has recently been added as an error condition.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2009-07-22 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* src/irq-generic.c: Priority inheritance on simple binary semaphores
|
||||||
|
makes no sense and has recently been added as an error condition.
|
||||||
|
|
||||||
2009-05-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
2009-05-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||||
|
|
||||||
* include/stackalloc.h, src/stackalloc.c: New files.
|
* include/stackalloc.h, src/stackalloc.c: New files.
|
||||||
|
|||||||
@@ -143,7 +143,7 @@ static rtems_status_code bsp_interrupt_lock( void)
|
|||||||
sc = rtems_semaphore_create (
|
sc = rtems_semaphore_create (
|
||||||
rtems_build_name( 'I', 'N', 'T', 'R'),
|
rtems_build_name( 'I', 'N', 'T', 'R'),
|
||||||
1,
|
1,
|
||||||
RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
|
RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_PRIORITY,
|
||||||
RTEMS_NO_PRIORITY,
|
RTEMS_NO_PRIORITY,
|
||||||
&mutex
|
&mutex
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user