summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/chainimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-04 09:37:15 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:24 +0200
commitd995a263b5de31583cd269c71a5ef760e98e8f26 (patch)
tree0916554dcc2cc384d2bdfd58ae65fe39571b15d1 /cpukit/score/include/rtems/score/chainimpl.h
parentscore: Delete _Chain_Get() (diff)
downloadrtems-d995a263b5de31583cd269c71a5ef760e98e8f26.tar.bz2
score: Delete _Chain_Append()
This function is not used in the score. Update #2555.
Diffstat (limited to 'cpukit/score/include/rtems/score/chainimpl.h')
-rw-r--r--cpukit/score/include/rtems/score/chainimpl.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpukit/score/include/rtems/score/chainimpl.h b/cpukit/score/include/rtems/score/chainimpl.h
index 166b58bfcc..ff66d46859 100644
--- a/cpukit/score/include/rtems/score/chainimpl.h
+++ b/cpukit/score/include/rtems/score/chainimpl.h
@@ -80,19 +80,6 @@ void _Chain_Initialize(
);
/**
- * @brief Append a node on the end of a chain.
- *
- * This routine appends @a the_node onto the end of @a the_chain.
- *
- * @note It disables interrupts to ensure the atomicity of the
- * append operation.
- */
-void _Chain_Append(
- Chain_Control *the_chain,
- Chain_Node *the_node
-);
-
-/**
* @brief Returns the node count of the chain.
*
* @param[in] chain The chain.