summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/include/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-04 09:36:01 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:24 +0200
commit3bf2bcc8c630aa68ad869bbe44197d8cc2370c72 (patch)
tree92f2f0fad2c19ace9c67bc1cf675905b9172bd5e /cpukit/sapi/include/rtems
parentscore: Delete _Chain_Extract() (diff)
downloadrtems-3bf2bcc8c630aa68ad869bbe44197d8cc2370c72.tar.bz2
score: Delete _Chain_Get()
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 4bbdd530f6..d9254449e1 100644
--- a/cpukit/sapi/include/rtems/chain.h
+++ b/cpukit/sapi/include/rtems/chain.h
@@ -591,18 +591,9 @@ RTEMS_INLINE_ROUTINE void rtems_chain_extract_unprotected(
*
* NOTE: It disables interrupts to ensure the atomicity of the get operation.
*/
-#if defined( RTEMS_SMP )
rtems_chain_node *rtems_chain_get(
rtems_chain_control *the_chain
);
-#else
-RTEMS_INLINE_ROUTINE rtems_chain_node *rtems_chain_get(
- rtems_chain_control *the_chain
-)
-{
- return _Chain_Get( the_chain );
-}
-#endif
/**
* @brief See _Chain_Get_unprotected().