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:
Joel Sherrill
2009-07-22 20:45:23 +00:00
parent 592b91fb49
commit b01619d7c0
2 changed files with 6 additions and 1 deletions

View File

@@ -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>
* include/stackalloc.h, src/stackalloc.c: New files.

View File

@@ -143,7 +143,7 @@ static rtems_status_code bsp_interrupt_lock( void)
sc = rtems_semaphore_create (
rtems_build_name( 'I', 'N', 'T', 'R'),
1,
RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_PRIORITY,
RTEMS_NO_PRIORITY,
&mutex
);