source: rtems/c/src/lib/libbsp/shared/gnatinstallhandler.c @ 08b5f55

4.104.114.84.95
Last change on this file since 08b5f55 was 455d8552, checked in by Joel Sherrill <joel.sherrill@…>, on 06/24/99 at 17:53:16

Added dummy gnatinstallhandler code for all BSPs. This lets Ada programs
link even if they do not actually support Ada interrupts.

  • Property mode set to 100644
File size: 495 bytes
Line 
1/*
2 *  Default implementation of __gnat_install_handler to satisfy
3 *  reference in a-init.c in GNAT's run-time.  Each BSP really
4 *  should provide its own version of this routine but this
5 *  version lets programs link.
6 *
7 *  This routine is responsible for installing fault/exception/trap
8 *  handlers that map them onto POSIX signals so they can be
9 *  propagated to the GNAT run-time.  See the sparc/erc32 BSP
10 *  for an example.
11 *
12 *  $Id$
13 */
14
15void __gnat_install_handler( void )
16{
17}
Note: See TracBrowser for help on using the repository browser.