summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/threadmp.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/threadmp.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/threadmp.inl')
-rw-r--r--cpukit/score/inline/rtems/score/threadmp.inl29
1 files changed, 16 insertions, 13 deletions
diff --git a/cpukit/score/inline/rtems/score/threadmp.inl b/cpukit/score/inline/rtems/score/threadmp.inl
index 81ecb6dcc6..31af372715 100644
--- a/cpukit/score/inline/rtems/score/threadmp.inl
+++ b/cpukit/score/inline/rtems/score/threadmp.inl
@@ -1,8 +1,10 @@
-/**
- * @file rtems/score/threadmp.inl
+/**
+ * @file
+ *
+ * @brief Inlined Routines for the Multiprocessing part of Thread Package
*
- * This include file contains the bodies of all inlined routines
- * for the multiprocessing part of thread package.
+ * This include file contains the bodies of all inlined routines
+ * for the multiprocessing part of thread package.
*/
/*
@@ -24,23 +26,24 @@
#define _RTEMS_SCORE_THREADMP_INL
/**
- * @addtogroup ScoreThreadMP
- * @{
+ * @addtogroup ScoreThreadMP
+ *
+ * @{
*/
/**
- * This function returns true if the thread in question is the
- * multiprocessing receive thread.
+ * This function returns true if the thread in question is the
+ * multiprocessing receive thread.
*
- * @note This is a macro to avoid needing a prototype for
- * _MPCI_Receive_server_tcb until it is used.
+ * @note This is a macro to avoid needing a prototype for
+ * _MPCI_Receive_server_tcb until it is used.
*/
#define _Thread_MP_Is_receive(_the_thread) \
((_the_thread) == _MPCI_Receive_server_tcb)
/**
- * This routine frees a proxy control block to the
- * inactive chain of free proxy control blocks.
+ * This routine frees a proxy control block to the
+ * inactive chain of free proxy control blocks.
*/
RTEMS_INLINE_ROUTINE void _Thread_MP_Free_proxy (
@@ -56,7 +59,7 @@ RTEMS_INLINE_ROUTINE void _Thread_MP_Free_proxy (
_Chain_Append( &_Thread_MP_Inactive_proxies, &the_thread->Object.Node );
}
-/**@}*/
+/** @} */
#endif
/* end of include file */