summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/priority.inl
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-24 10:26:56 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-24 11:11:21 +0200
commitdf8f9271eabcd61bf2bcf10d4e00619aedc5d653 (patch)
tree98975194826371cc8c5f997ec4e9df39d5eec17a /cpukit/score/inline/rtems/score/priority.inl
parentscore: Merge sysstate API into one file (diff)
downloadrtems-df8f9271eabcd61bf2bcf10d4e00619aedc5d653.tar.bz2
score: Delete priority.inl
Diffstat (limited to '')
-rw-r--r--cpukit/score/inline/rtems/score/priority.inl53
1 files changed, 0 insertions, 53 deletions
diff --git a/cpukit/score/inline/rtems/score/priority.inl b/cpukit/score/inline/rtems/score/priority.inl
deleted file mode 100644
index 5c7c6b3402..0000000000
--- a/cpukit/score/inline/rtems/score/priority.inl
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
- * @file
- *
- * @brief Inlined Routines in the Priority Handler
- *
- * This file contains the static inline implementation of all inlined
- * routines in the Priority Handler.
- */
-
-/*
- * COPYRIGHT (c) 1989-2011.
- * 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_PRIORITY_H
-# error "Never use <rtems/score/priority.inl> directly; include <rtems/score/priority.h> instead."
-#endif
-
-#ifndef _RTEMS_SCORE_PRIORITY_INL
-#define _RTEMS_SCORE_PRIORITY_INL
-
-/**
- * @addtogroup ScorePriority
- */
-/**@{**/
-
-/**
- * This function returns true if the_priority if valid for a
- * user task, and false otherwise.
- */
-
-RTEMS_INLINE_ROUTINE bool _Priority_Is_valid (
- Priority_Control the_priority
-)
-{
- /*
- * Since PRIORITY_MINIMUM is 0 and priorities are stored unsigned,
- * then checking for less than 0 is unnecessary.
- */
-
- return ( the_priority <= PRIORITY_MAXIMUM );
-}
-
-
-
-/** @} */
-
-#endif
-/* end of include file */