summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/include/rtems
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/sapi/include/rtems
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/sapi/include/rtems')
-rw-r--r--cpukit/sapi/include/rtems/chain.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/cpukit/sapi/include/rtems/chain.h b/cpukit/sapi/include/rtems/chain.h
index d9254449e1..3d8a860f20 100644
--- a/cpukit/sapi/include/rtems/chain.h
+++ b/cpukit/sapi/include/rtems/chain.h
@@ -648,20 +648,10 @@ RTEMS_INLINE_ROUTINE void rtems_chain_insert_unprotected(
* NOTE: It disables interrupts to ensure the atomicity of the
* append operation.
*/
-#if defined( RTEMS_SMP )
void rtems_chain_append(
rtems_chain_control *the_chain,
rtems_chain_node *the_node
);
-#else
-RTEMS_INLINE_ROUTINE void rtems_chain_append(
- rtems_chain_control *the_chain,
- rtems_chain_node *the_node
-)
-{
- _Chain_Append( the_chain, the_node );
-}
-#endif
/**
* @brief Append a node on the end of a chain (unprotected).