summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/apiext.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-14 11:55:28 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-31 08:29:43 +0200
commit8061f568de694bdf93b0fa6cda22de4e41b03d7e (patch)
treee8be5cf5fdcb4b5123683a5fcdb3e639ba9062aa /cpukit/score/include/rtems/score/apiext.h
parentposix: Use thread action for signals (diff)
downloadrtems-8061f568de694bdf93b0fa6cda22de4e41b03d7e.tar.bz2
score: Delete post-switch API extensions
Use thread post-switch actions instead.
Diffstat (limited to 'cpukit/score/include/rtems/score/apiext.h')
-rw-r--r--cpukit/score/include/rtems/score/apiext.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/cpukit/score/include/rtems/score/apiext.h b/cpukit/score/include/rtems/score/apiext.h
index f281ab824a..838267335d 100644
--- a/cpukit/score/include/rtems/score/apiext.h
+++ b/cpukit/score/include/rtems/score/apiext.h
@@ -52,13 +52,6 @@ extern "C" {
typedef void (*API_extensions_Postdriver_hook)(void);
/**
- * This type defines the prototype of the Post Switch Hook.
- */
-typedef void (*API_extensions_Post_switch_hook)(
- Thread_Control *
- );
-
-/**
* The control structure which defines the points at which an API
* can add an extension to the system initialization thread.
*/
@@ -86,31 +79,10 @@ typedef struct {
} API_extensions_Control;
/**
- * @brief Control structure for post switch hooks.
- */
-typedef struct {
- Chain_Node Node;
-
- /**
- * @brief The hook invoked during each context switch in the context of the
- * heir thread.
- *
- * This hook must not be NULL.
- */
- API_extensions_Post_switch_hook hook;
-} API_extensions_Post_switch_control;
-
-/**
* This is the list of API extensions to the system initialization.
*/
SCORE_EXTERN Chain_Control _API_extensions_List;
-
-/**
- * @brief The API extensions post switch list.
- */
-SCORE_EXTERN Chain_Control _API_extensions_Post_switch_list;
-
/**
* @brief Initialize the API extensions handler.
*
@@ -129,23 +101,6 @@ void _API_extensions_Add(
API_extensions_Control *the_extension
);
-/**
- * @brief Adds the API extension post switch control to the post switch list.
- *
- * The post switch control is only added to the list if it is in the off chain
- * state. Thus this function can be called multiple times with the same
- * post switch control and only the first invocation will actually add it to the
- * list.
- *
- * There is no protection against concurrent access. This function must be
- * called within a _Thread_Disable_dispatch() critical section.
- *
- * @param [in, out] post_switch The post switch control.
- */
-void _API_extensions_Add_post_switch(
- API_extensions_Post_switch_control *post_switch
-);
-
#if defined(FUNCTIONALITY_NOT_CURRENTLY_USED_BY_ANY_API)
/**
* @brief Execute all pre-driver extensions.
@@ -162,25 +117,6 @@ void _API_extensions_Add_post_switch(
*/
void _API_extensions_Run_postdriver( void );
-/**
- * @brief Runs all API extension post switch hooks.
- */
-static inline void _API_extensions_Run_post_switch( Thread_Control *executing )
-{
- const Chain_Control *chain = &_API_extensions_Post_switch_list;
- const Chain_Node *tail = _Chain_Immutable_tail( chain );
- const Chain_Node *node = _Chain_Immutable_first( chain );
-
- while ( node != tail ) {
- const API_extensions_Post_switch_control *post_switch =
- (const API_extensions_Post_switch_control *) node;
-
- (*post_switch->hook)( executing );
-
- node = _Chain_Immutable_next( node );
- }
-}
-
/**@}*/
#ifdef __cplusplus