source: rtems/c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c @ 2b6c0bf

4.104.114.95
Last change on this file since 2b6c0bf was 2b6c0bf, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/18/08 at 11:53:53

Add missing prototypes.

  • Property mode set to 100644
File size: 383 bytes
Line 
1/*
2 *
3 * Support for gnat/rtems interrupts and exception handling.
4 * Jiri Gaisler, ESA/ESTEC, 17-02-1999.
5 *
6 *  $Id$
7 */
8
9void __gnat_install_handler_common (int t1, int t2);
10
11/*
12 *  Avoid trap 0x18 which is used by the clock tick, and
13 *  0x12 (UART B interrupt) which is used by the stub.
14 */
15
16void
17__gnat_install_handler (void)
18{
19  __gnat_install_handler_common (0x18, 0x12);
20}
Note: See TracBrowser for help on using the repository browser.