summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/schedulersimple.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/schedulersimple.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/schedulersimple.inl')
-rw-r--r--cpukit/score/inline/rtems/score/schedulersimple.inl22
1 files changed, 13 insertions, 9 deletions
diff --git a/cpukit/score/inline/rtems/score/schedulersimple.inl b/cpukit/score/inline/rtems/score/schedulersimple.inl
index b94cd224da..4c6e27d355 100644
--- a/cpukit/score/inline/rtems/score/schedulersimple.inl
+++ b/cpukit/score/inline/rtems/score/schedulersimple.inl
@@ -1,8 +1,11 @@
-/**
- * @file rtems/score/schedulersimple.inl
+/**
+ * @file
+ *
+ * @brief Inlined Routines Associated with the Manipulation of the
+ * Priority-Based Scheduling Structures
*
- * This inline file contains all of the inlined routines associated with
- * the manipulation of the priority-based scheduling structures.
+ * This inline file contains all of the inlined routines associated with
+ * the manipulation of the priority-based scheduling structures.
*/
/*
@@ -23,15 +26,16 @@
#include <rtems/score/thread.h>
/**
- * @addtogroup ScoreScheduler
+ * @addtogroup ScoreScheduler
+ *
* @{
*/
/**
- * This routine puts @a the_thread on to the ready queue.
+ * This routine puts @a the_thread on to the ready queue.
*
- * @param[in] the_ready_queue is a pointer to the ready queue head
- * @param[in] the_thread is the thread to be blocked
+ * @param[in] the_ready_queue is a pointer to the ready queue head
+ * @param[in] the_thread is the thread to be blocked
*/
RTEMS_INLINE_ROUTINE void _Scheduler_simple_Ready_queue_requeue(
Scheduler_Control *the_ready_queue,
@@ -45,7 +49,7 @@ RTEMS_INLINE_ROUTINE void _Scheduler_simple_Ready_queue_requeue(
_Scheduler_simple_Ready_queue_enqueue( the_thread );
}
-/**@}*/
+/** @} */
#endif
/* end of include file */