summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/include/bsp/gnatcommon.h
blob: 40e8829bb9b97eff0649af0dda6f9e1ec8c5f699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
 * @file
 *
 * @ingroup RTEMSImplGnat
 *
 * @brief This header file provides interfaces of the
 *   gnat/rtems interrupts and exception handling.
 */

/**
 * @defgroup RTEMSImplGnat GNAT/RTEMS interrupts and exception handling
 *
 * @ingroup RTEMSImpl
 */

#ifndef __GNATCOMMON_H
#define __GNATCOMMON_H

/*
 * Support for gnat/rtems interrupts and exception handling.
 */

#ifdef __cplusplus
extern "C" {
#endif

void __gnat_install_handler (void);
void __gnat_install_handler_common (int t1, int t2);

#ifdef __cplusplus
}
#endif

#endif