Added dummy gnatinstallhandler code for all BSPs. This lets Ada programs

link even if they do not actually support Ada interrupts.
This commit is contained in:
Joel Sherrill
1999-06-24 17:53:16 +00:00
parent 373d359b66
commit 455d855260
34 changed files with 50 additions and 33 deletions

View File

@@ -0,0 +1,17 @@
/*
* Default implementation of __gnat_install_handler to satisfy
* reference in a-init.c in GNAT's run-time. Each BSP really
* should provide its own version of this routine but this
* version lets programs link.
*
* This routine is responsible for installing fault/exception/trap
* handlers that map them onto POSIX signals so they can be
* propagated to the GNAT run-time. See the sparc/erc32 BSP
* for an example.
*
* $Id$
*/
void __gnat_install_handler( void )
{
}