summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/chain.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/chain.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/score/include/rtems/score/chain.h
index 651ee15291..53976e6d78 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/score/include/rtems/score/chain.h
@@ -130,10 +130,12 @@ void _Chain_Initialize(
* @brief Extract the specified node from a chain
*
* This routine extracts @a the_node from the chain on which it resides.
- * It disables interrupts to ensure the atomicity of the
- * extract operation.
+ * It disables interrupts to ensure the atomicity of the extract operation.
*
- * @arg the_node specifies the node to extract
+ * @param[in] the_node is the node to be extracted
+ *
+ * - INTERRUPT LATENCY:
+ * + single case
*/
void _Chain_Extract(
Chain_Node *the_node
@@ -160,9 +162,15 @@ 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] node is the pointer to the node to be inserted
*
* @note It disables interrupts to ensure the atomicity
- * of the extract operation.
+ * of the insert operation.
+ *
+ * - INTERRUPT LATENCY:
+ * + single case
*/
void _Chain_Insert(
Chain_Node *after_node,