forked from Imagelibrary/rtems
2008-08-04 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/new-exceptions/cpu.h: Changed define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER to UINT32_MAX to avoid comparison between signed and unsigned.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2008-08-04 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||||
|
|
||||||
|
* rtems/new-exceptions/cpu.h: Changed define
|
||||||
|
CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER to UINT32_MAX to avoid comparison
|
||||||
|
between signed and unsigned.
|
||||||
|
|
||||||
2008-07-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
2008-07-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||||
|
|
||||||
* rtems/powerpc/registers.h: Added masks for BOOKE_TCR fields.
|
* rtems/powerpc/registers.h: Added masks for BOOKE_TCR fields.
|
||||||
|
|||||||
@@ -248,7 +248,7 @@ SCORE_EXTERN struct {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define CPU_INTERRUPT_NUMBER_OF_VECTORS (0)
|
#define CPU_INTERRUPT_NUMBER_OF_VECTORS (0)
|
||||||
#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER (-1)
|
#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER (UINT32_MAX)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is defined if the port has a special way to report the ISR nesting
|
* This is defined if the port has a special way to report the ISR nesting
|
||||||
|
|||||||
Reference in New Issue
Block a user