2002-11-01 Joel Sherrill <joel@OARcorp.com>

* gnatsupp/gnatsupp.c, startup/spurious.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-11-01 21:57:28 +00:00
parent a1a84a3901
commit 88c48a3a6f
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* gnatsupp/gnatsupp.c, startup/spurious.c: Removed warnings.
2002-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Reformat.

View File

@@ -5,6 +5,8 @@
*
*/
void __gnat_install_handler_common (int t1, int t2);
/*
* Avoid trap 0x18 which is used by the clock tick, and
* 0x12 (UART B interrupt) which is used by the stub.

View File

@@ -164,7 +164,11 @@ void bsp_spurious_initialize()
(( trap >= 0x70 ) && ( trap <= 0x83 )))
continue;
set_vector( bsp_spurious_handler, SPARC_SYNCHRONOUS_TRAP( trap ), 1 );
set_vector(
(rtems_isr_entry) bsp_spurious_handler,
SPARC_SYNCHRONOUS_TRAP( trap ),
1
);
}
LEON_REG.Interrupt_Mask = mask;