Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:08

0001 /**
0002  * @file
0003  *
0004  * @ingroup RTEMSImplGnat
0005  *
0006  * @brief This header file provides interfaces of the
0007  *   gnat/rtems interrupts and exception handling.
0008  */
0009 
0010 /**
0011  * @defgroup RTEMSImplGnat GNAT/RTEMS interrupts and exception handling
0012  *
0013  * @ingroup RTEMSImpl
0014  */
0015 
0016 #ifndef __GNATCOMMON_H
0017 #define __GNATCOMMON_H
0018 
0019 /*
0020  * Support for gnat/rtems interrupts and exception handling.
0021  */
0022 
0023 #ifdef __cplusplus
0024 extern "C" {
0025 #endif
0026 
0027 void __gnat_install_handler (void);
0028 void __gnat_install_handler_common (int t1, int t2);
0029 
0030 #ifdef __cplusplus
0031 }
0032 #endif
0033 
0034 #endif