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:29:02 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:23 +0200
commitcd90052365788b48dcccb235a75754d41bfb29a3 (patch)
tree79ee94978b94b2f79ffc76290888593f75617c29 /cpukit/score/include/rtems/score/chainimpl.h
parentscore: Delete _Chain_Prepend_with_empty_check() (diff)
downloadrtems-cd90052365788b48dcccb235a75754d41bfb29a3.tar.bz2
score: Delete _Chain_Get_with_empty_check()
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.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/cpukit/score/include/rtems/score/chainimpl.h b/cpukit/score/include/rtems/score/chainimpl.h
index f23fab8f27..fa9a046d3c 100644
--- a/cpukit/score/include/rtems/score/chainimpl.h
+++ b/cpukit/score/include/rtems/score/chainimpl.h
@@ -145,31 +145,6 @@ void _Chain_Append(
);
/**
- * @brief Get the first node and check if the chain is empty afterwards.
- *
- * This function removes the first node from the_chain and returns
- * a pointer to that node in @a the_node. If the_chain is empty, then NULL is
- * returned.
- *
- * @param[in] the_chain is the chain to attempt to get the first node from.
- * @param[out] the_node is the first node on the chain or NULL if the chain is
- * empty.
- *
- * @note It disables interrupts to ensure the atomicity of the append
- * operation.
- *
- * @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,
- Chain_Node **the_node
-);
-
-/**
* @brief Returns the node count of the chain.
*
* @param[in] chain The chain.