summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/priority.inl
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2013-01-09 11:20:58 -0500
committerGedare Bloom <gedare@rtems.org>2013-01-09 11:20:58 -0500
commitd8134178deaa9728013ccb858bb0784bce533663 (patch)
treeadf7a7b2d88e5f85ed9151430bd3fa86b36ea42e /cpukit/score/inline/rtems/score/priority.inl
parentbsps/arm: Fix LPC Ethernet driver initialization (diff)
downloadrtems-d8134178deaa9728013ccb858bb0784bce533663.tar.bz2
score: Doxygen Clean Up Task #18
http://www.google-melange.com/gci/task/view/google/gci2012/8137204
Diffstat (limited to 'cpukit/score/inline/rtems/score/priority.inl')
-rw-r--r--cpukit/score/inline/rtems/score/priority.inl19
1 files changed, 11 insertions, 8 deletions
diff --git a/cpukit/score/inline/rtems/score/priority.inl b/cpukit/score/inline/rtems/score/priority.inl
index c0ac766a2f..7059682bf1 100644
--- a/cpukit/score/inline/rtems/score/priority.inl
+++ b/cpukit/score/inline/rtems/score/priority.inl
@@ -1,5 +1,7 @@
-/**
- * @file rtems/score/priority.inl
+/**
+ * @file
+ *
+ * @brief Inlined Routines in the Priority Handler
*
* This file contains the static inline implementation of all inlined
* routines in the Priority Handler.
@@ -22,20 +24,21 @@
#define _RTEMS_SCORE_PRIORITY_INL
/**
- * @addtogroup ScorePriority
- * @{
+ * @addtogroup ScorePriority
+ *
+ * @{
*/
/**
- * This function returns true if the_priority if valid for a
- * user task, and false otherwise.
+ * 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.
*/
@@ -45,7 +48,7 @@ RTEMS_INLINE_ROUTINE bool _Priority_Is_valid (
-/**@}*/
+/** @} */
#endif
/* end of include file */