summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/apiext.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/apiext.c')
-rw-r--r--cpukit/score/src/apiext.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/cpukit/score/src/apiext.c b/cpukit/score/src/apiext.c
index 51b94515e3..b2ca87cba2 100644
--- a/cpukit/score/src/apiext.c
+++ b/cpukit/score/src/apiext.c
@@ -84,23 +84,4 @@ void _API_extensions_Run_postdriver( void )
}
}
-/*
- * _API_extensions_Run_postswitch
- */
-
-void _API_extensions_Run_postswitch( void )
-{
- Chain_Node *the_node;
- API_extensions_Control *the_extension;
-
- for ( the_node = _Chain_First( &_API_extensions_List );
- !_Chain_Is_tail( &_API_extensions_List, the_node ) ;
- the_node = the_node->next ) {
-
- the_extension = (API_extensions_Control *) the_node;
-
- (*the_extension->postswitch_hook)( _Thread_Executing );
- }
-}
-
/* end of file */