forked from Imagelibrary/rtems
2001-07-25 Radzislaw Galler <rgaller@et.put.poznan.pl>
* cpu.c (_CPU_ISR_install_vector): Corrected interrupt range checking which was SH1 specific. It didn't work for SH2 (has more interrupt sources).
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2001-07-25 Radzislaw Galler <rgaller@et.put.poznan.pl>
|
||||
|
||||
* cpu.c (_CPU_ISR_install_vector): Corrected interrupt range
|
||||
checking which was SH1 specific. It didn't work for SH2 (has more
|
||||
interrupt sources).
|
||||
|
||||
2001-02-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am, rtems/score/Makefile.am:
|
||||
|
||||
@@ -158,9 +158,10 @@ void _CPU_ISR_install_vector(
|
||||
)
|
||||
{
|
||||
proc_ptr ignored ;
|
||||
|
||||
#if 0
|
||||
if(( vector <= 113) && ( vector >= 11))
|
||||
{
|
||||
#endif
|
||||
*old_handler = _ISR_Vector_table[ vector ];
|
||||
|
||||
/*
|
||||
@@ -178,7 +179,9 @@ void _CPU_ISR_install_vector(
|
||||
*/
|
||||
|
||||
_ISR_Vector_table[ vector ] = new_handler;
|
||||
#if 0
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/*PAGE
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
2001-07-25 Radzislaw Galler <rgaller@et.put.poznan.pl>
|
||||
|
||||
* cpu.c (_CPU_ISR_install_vector): Corrected interrupt range
|
||||
checking which was SH1 specific. It didn't work for SH2 (has more
|
||||
interrupt sources).
|
||||
|
||||
2001-02-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am, rtems/score/Makefile.am:
|
||||
|
||||
@@ -158,9 +158,10 @@ void _CPU_ISR_install_vector(
|
||||
)
|
||||
{
|
||||
proc_ptr ignored ;
|
||||
|
||||
#if 0
|
||||
if(( vector <= 113) && ( vector >= 11))
|
||||
{
|
||||
#endif
|
||||
*old_handler = _ISR_Vector_table[ vector ];
|
||||
|
||||
/*
|
||||
@@ -178,7 +179,9 @@ void _CPU_ISR_install_vector(
|
||||
*/
|
||||
|
||||
_ISR_Vector_table[ vector ] = new_handler;
|
||||
#if 0
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/*PAGE
|
||||
|
||||
Reference in New Issue
Block a user