summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/chain.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/chain.c')
-rw-r--r--cpukit/score/src/chain.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/cpukit/score/src/chain.c b/cpukit/score/src/chain.c
index aa0387ef53..c01db0fb3b 100644
--- a/cpukit/score/src/chain.c
+++ b/cpukit/score/src/chain.c
@@ -68,28 +68,6 @@ void _Chain_Initialize(
/*PAGE
*
- * _Chain_Get_first_unprotected
- */
-
-#ifndef RTEMS_INLINES
-Chain_Node *_Chain_Get_first_unprotected(
- Chain_Control *the_chain
-)
-{
- Chain_Node *return_node;
- Chain_Node *new_first;
-
- return_node = the_chain->first;
- new_first = return_node->next;
- the_chain->first = new_first;
- new_first->previous = _Chain_Head( the_chain );
-
- return return_node;
-}
-#endif /* RTEMS_INLINES */
-
-/*PAGE
- *
* _Chain_Get
*
* This kernel routine returns a pointer to a node taken from the