From b0354b0eeee4753d947e7b359da0b7931da4d39f Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 4 Apr 2016 06:17:59 +0200 Subject: score: Delete _Chain_Insert() This function is not used in the score. Update #2555. --- cpukit/sapi/include/rtems/chain.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'cpukit/sapi/include/rtems') diff --git a/cpukit/sapi/include/rtems/chain.h b/cpukit/sapi/include/rtems/chain.h index f7768904c5..81f07b8af4 100644 --- a/cpukit/sapi/include/rtems/chain.h +++ b/cpukit/sapi/include/rtems/chain.h @@ -642,20 +642,10 @@ RTEMS_INLINE_ROUTINE rtems_chain_node *rtems_chain_get_first_unprotected( * NOTE: It disables interrupts to ensure the atomicity * of the extract operation. */ -#if defined( RTEMS_SMP ) void rtems_chain_insert( rtems_chain_node *after_node, rtems_chain_node *the_node ); -#else -RTEMS_INLINE_ROUTINE void rtems_chain_insert( - rtems_chain_node *after_node, - rtems_chain_node *the_node -) -{ - _Chain_Insert( after_node, the_node ); -} -#endif /** * @brief See _Chain_Insert_unprotected(). -- cgit v1.2.3