summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/include/rtems/score/isr.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/include/rtems/score/isr.h41
1 files changed, 2 insertions, 39 deletions
diff --git a/c/src/exec/score/include/rtems/score/isr.h b/c/src/exec/score/include/rtems/score/isr.h
index bb80823cfb..e42d7b888e 100644
--- a/c/src/exec/score/include/rtems/score/isr.h
+++ b/c/src/exec/score/include/rtems/score/isr.h
@@ -141,19 +141,6 @@ void _ISR_Handler_initialization ( void );
_CPU_ISR_Flash( _level )
/*
- * _ISR_Is_in_progress
- *
- * DESCRIPTION:
- *
- * This function returns TRUE if the processor is currently servicing
- * and interrupt and FALSE otherwise. A return value of TRUE indicates
- * that the caller is an interrupt service routine, NOT a thread. The
- * directives available to an interrupt service routine are restricted.
- */
-
-STATIC INLINE boolean _ISR_Is_in_progress( void );
-
-/*
* _ISR_Install_vector
*
* DESCRIPTION:
@@ -191,32 +178,6 @@ STATIC INLINE boolean _ISR_Is_in_progress( void );
_CPU_ISR_Set_level( _new_level )
/*
- * _ISR_Is_vector_number_valid
- *
- * DESCRIPTION:
- *
- * This function returns TRUE if the vector is a valid vector number
- * for this processor and FALSE otherwise.
- */
-
-STATIC INLINE boolean _ISR_Is_vector_number_valid (
- ISR_Vector_number vector
-);
-
-/*
- * _ISR_Is_valid_user_handler
- *
- * DESCRIPTION:
- *
- * This function returns TRUE if handler is the entry point of a valid
- * use interrupt service routine and FALSE otherwise.
- */
-
-STATIC INLINE boolean _ISR_Is_valid_user_handler (
- void *handler
-);
-
-/*
* _ISR_Handler
*
* DESCRIPTION:
@@ -253,7 +214,9 @@ void _ISR_Handler( void );
void _ISR_Dispatch( void );
+#ifndef __RTEMS_APPLICATION__
#include <rtems/score/isr.inl>
+#endif
#ifdef __cplusplus
}