summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/chain.h
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2012-11-29 20:01:26 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-11-29 20:01:26 -0600
commit8396c18ee6eb60403730e5aa2480474c6109f823 (patch)
treecf4b748114b60deb44fc865592d128f07899efe9 /cpukit/score/include/rtems/score/chain.h
parentscore misc: Score misc: Clean up Doxygen #7 (GCI 2012) (diff)
downloadrtems-8396c18ee6eb60403730e5aa2480474c6109f823.tar.bz2
Score misc: Clean up Doxygen #8 (GCI 2012)
This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7970221
Diffstat (limited to 'cpukit/score/include/rtems/score/chain.h')
-rw-r--r--cpukit/score/include/rtems/score/chain.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/score/include/rtems/score/chain.h
index 53976e6d78..ebb0f24e8c 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/score/include/rtems/score/chain.h
@@ -162,8 +162,9 @@ Chain_Node *_Chain_Get(
*
* This routine inserts @a the_node on a chain immediately following
* @a after_node.
- *
- * @param[in] after_node is the pointer to the node in chain to be inserted after
+ *
+ * @param[in] after_node is the pointer to the node in chain to be
+ * inserted after
* @param[in] node is the pointer to the node to be inserted
*
* @note It disables interrupts to ensure the atomicity
@@ -244,6 +245,9 @@ bool _Chain_Prepend_with_empty_check(
*
* @retval true The chain is empty now.
* @retval false The chain contains at least one node now.
+ *
+ * - INTERRUPT LATENCY:
+ * + single case
*/
bool _Chain_Get_with_empty_check(
Chain_Control *the_chain,