forked from Imagelibrary/rtems
2000-12-19 Joel Sherrill <joel@OARcorp.com>
* tx39/vectorisrs/vectorisrs.c: Modified to have default exception vector handler. This should be in a separate file so the BSP can easily override it.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2000-12-19 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* tx39/vectorisrs/vectorisrs.c: Modified to have default exception
|
||||
vector handler. This should be in a separate file so the BSP can
|
||||
easily override it.
|
||||
|
||||
2000-12-13 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* configure.in: Added new directories.
|
||||
|
||||
@@ -12,7 +12,18 @@
|
||||
} while (0)
|
||||
|
||||
#define CALL_ISR(_vector) \
|
||||
(_ISR_Vector_table[_vector])(_vector);
|
||||
do { \
|
||||
if ( _ISR_Vector_table[_vector] ) \
|
||||
(_ISR_Vector_table[_vector])(_vector); \
|
||||
else \
|
||||
mips_default_exception(_vector); \
|
||||
} while (0)
|
||||
|
||||
void mips_default_exception( int vector )
|
||||
{
|
||||
printk( "Unhandled exception %d\n", vector );
|
||||
rtems_fatal_error_occurred(1);
|
||||
}
|
||||
|
||||
void mips_vector_isr_handlers( void )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user