2002-10-31 Joel Sherrill <joel@OARcorp.com>

* rtems/new-exceptions/cpu.h: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-10-31 20:08:40 +00:00
parent ee55cdb891
commit 1c3ea41291
2 changed files with 9 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2002-10-31 Joel Sherrill <joel@OARcorp.com>
* rtems/new-exceptions/cpu.h: Removed warnings.
2002-10-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
@@ -676,7 +676,9 @@ static inline void _CPU_ISR_Set_level( unsigned32 level )
_CPU_MSR_SET(msr);
}
#define _CPU_ISR_install_vector(irq, new, old) {BSP_panic("_CPU_ISR_install_vector called\n");}
void BSP_panic(char *);
#define _CPU_ISR_install_vector(irq, new, old) \
{BSP_panic("_CPU_ISR_install_vector called\n");}
/* Context handler macros */
@@ -764,6 +766,8 @@ void _CPU_Context_Initialize(
* halts/stops the CPU.
*/
void _BSP_Fatal_error(unsigned int);
#define _CPU_Fatal_halt( _error ) \
_BSP_Fatal_error(_error)