summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/userext.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/score/userext.h')
-rw-r--r--cpukit/include/rtems/score/userext.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/cpukit/include/rtems/score/userext.h b/cpukit/include/rtems/score/userext.h
index 7b80227f37..216b795f86 100644
--- a/cpukit/include/rtems/score/userext.h
+++ b/cpukit/include/rtems/score/userext.h
@@ -19,7 +19,6 @@
#define _RTEMS_SCORE_USEREXT_H
#include <rtems/score/interr.h>
-#include <rtems/score/chain.h>
#ifdef __cplusplus
extern "C" {
@@ -242,28 +241,6 @@ typedef struct {
User_extensions_thread_terminate_extension thread_terminate;
} User_extensions_Table;
-/**
- * @brief Manages the switch callouts.
- *
- * They are managed separately from other extensions for performance reasons.
- */
-typedef struct {
- Chain_Node Node;
- User_extensions_thread_switch_extension thread_switch;
-} User_extensions_Switch_control;
-
-/**
- * @brief Manages each user extension set.
- *
- * The switch control is part of the extensions control even if not used due to
- * the extension not having a switch handler.
- */
-typedef struct {
- Chain_Node Node;
- User_extensions_Switch_control Switch;
- User_extensions_Table Callouts;
-} User_extensions_Control;
-
/** @} */
#ifdef __cplusplus