summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-18 11:04:23 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-22 16:46:00 +0200
commitd0a97f2d1db13e0b67ef91ec48efc3d22447c05d (patch)
treeac614fb4b770f732b048e5a25a757d4af3012844 /cpukit/score/inline/rtems/score
parentscore: Move ISR level content to single file (diff)
downloadrtems-d0a97f2d1db13e0b67ef91ec48efc3d22447c05d.tar.bz2
score: Move ISR catch support functions
Delete now unused file <rtems/score/isr.inl>.
Diffstat (limited to 'cpukit/score/inline/rtems/score')
-rw-r--r--cpukit/score/inline/rtems/score/isr.inl60
1 files changed, 0 insertions, 60 deletions
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 <rtems/score/isr.inl> directly; include <rtems/score/isr.h> 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 */