summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/include/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-04 06:57:01 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:23 +0200
commit223fff46b83678a2748cf1ffaae7f9f6cce37c58 (patch)
tree4dd6427a091469851c971c36b23ec06cb0b31cb8 /cpukit/sapi/include/rtems
parentscore: Delete _Chain_Insert() (diff)
downloadrtems-223fff46b83678a2748cf1ffaae7f9f6cce37c58.tar.bz2
score: Delete _Chain_Extract()
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.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/cpukit/sapi/include/rtems/chain.h b/cpukit/sapi/include/rtems/chain.h
index 81f07b8af4..4bbdd530f6 100644
--- a/cpukit/sapi/include/rtems/chain.h
+++ b/cpukit/sapi/include/rtems/chain.h
@@ -560,18 +560,9 @@ RTEMS_INLINE_ROUTINE bool rtems_chain_is_tail(
*
* @arg the_node specifies the node to extract
*/
-#if defined( RTEMS_SMP )
void rtems_chain_extract(
rtems_chain_node *the_node
);
-#else
-RTEMS_INLINE_ROUTINE void rtems_chain_extract(
- rtems_chain_node *the_node
-)
-{
- _Chain_Extract( the_node );
-}
-#endif
/**
* @brief Extract the specified node from a chain (unprotected).