From d0a97f2d1db13e0b67ef91ec48efc3d22447c05d Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 18 Jul 2013 11:04:23 +0200 Subject: score: Move ISR catch support functions Delete now unused file . --- cpukit/score/inline/rtems/score/isr.inl | 60 --------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 cpukit/score/inline/rtems/score/isr.inl (limited to 'cpukit/score/inline/rtems/score') diff --git a/cpukit/score/inline/rtems/score/isr.inl b/cpukit/score/inline/rtems/score/isr.inl deleted file mode 100644 index c46c585f55..0000000000 --- a/cpukit/score/inline/rtems/score/isr.inl +++ /dev/null @@ -1,60 +0,0 @@ -/** - * @file - * - * @brief Inlined Routines in the Interrupt Handler - * - * This include file contains the static implementation of all - * inlined routines in the Interrupt Handler. - */ - -/* - * COPYRIGHT (c) 1989-2012. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.com/license/LICENSE. - */ - -#ifndef _RTEMS_SCORE_ISR_H -# error "Never use directly; include instead." -#endif - -#ifndef _RTEMS_SCORE_ISR_INL -#define _RTEMS_SCORE_ISR_INL - -/** - * @addtogroup ScoreISR - */ -/**@{**/ - -#if (CPU_SIMPLE_VECTORED_INTERRUPTS == TRUE) -/** - * This function returns true if the vector is a valid vector number - * for this processor and false otherwise. - */ - -RTEMS_INLINE_ROUTINE bool _ISR_Is_vector_number_valid ( - uint32_t vector -) -{ - return ( vector <= CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER ); -} - -/** - * This function returns true if handler is the entry point of a valid - * use interrupt service routine and false otherwise. - */ - -RTEMS_INLINE_ROUTINE bool _ISR_Is_valid_user_handler ( - void *handler -) -{ - return (handler != NULL); -} -#endif - -/** @} */ - -#endif -/* end of include file */ -- cgit v1.2.3