forked from Imagelibrary/rtems
2011-02-01 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1733/cpukit * score/src/isr.c: If target architecture does nto require stack initialization, then do not perform adjustment.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2011-02-01 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
PR 1733/cpukit
|
||||||
|
* score/src/isr.c: If target architecture does nto require stack
|
||||||
|
initialization, then do not perform adjustment.
|
||||||
|
|
||||||
2011-02-01 Ralf Corsepius <ralf.corsepius@rtems.org>
|
2011-02-01 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* libcsupport/src/printk.c: Fix typo.
|
* libcsupport/src/printk.c: Fix typo.
|
||||||
|
|||||||
@@ -62,8 +62,10 @@ void _ISR_Handler_initialization( void )
|
|||||||
Configuration.interrupt_stack_size
|
Configuration.interrupt_stack_size
|
||||||
);
|
);
|
||||||
|
|
||||||
|
#if (CPU_STACK_ALIGNMENT != 0)
|
||||||
_CPU_Interrupt_stack_high = (void *)
|
_CPU_Interrupt_stack_high = (void *)
|
||||||
((uintptr_t) _CPU_Interrupt_stack_high & ~(CPU_STACK_ALIGNMENT - 1));
|
((uintptr_t) _CPU_Interrupt_stack_high & ~(CPU_STACK_ALIGNMENT - 1));
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Interrupt stack might have to be aligned and/or setup
|
/* Interrupt stack might have to be aligned and/or setup
|
||||||
* in a specific way.
|
* in a specific way.
|
||||||
|
|||||||
Reference in New Issue
Block a user