summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/apiext.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 13:32:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 13:32:13 +0000
commit05279b84b4a0f798b43ce1731784b7db577e772f (patch)
tree4079787381b3993b1f1ea00e4d9083563f8e1252 /cpukit/score/include/rtems/score/apiext.h
parent2004-04-17 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-05279b84b4a0f798b43ce1731784b7db577e772f.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/score/include/rtems/score/apiext.h')
-rw-r--r--cpukit/score/include/rtems/score/apiext.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/score/include/rtems/score/apiext.h b/cpukit/score/include/rtems/score/apiext.h
index 3d2d8b8edb..31206d4f83 100644
--- a/cpukit/score/include/rtems/score/apiext.h
+++ b/cpukit/score/include/rtems/score/apiext.h
@@ -23,13 +23,13 @@
* The control structure which defines the points at which an API
* can add an extension to the system initialization thread.
*/
-
+
typedef void (*API_extensions_Predriver_hook)(void);
typedef void (*API_extensions_Postdriver_hook)(void);
typedef void (*API_extensions_Postswitch_hook)(
Thread_Control *
);
-
+
typedef struct {
Chain_Node Node;
@@ -41,7 +41,7 @@ typedef struct {
/*
* This is the list of API extensions to the system initialization.
*/
-
+
SCORE_EXTERN Chain_Control _API_extensions_List;
/*
@@ -52,9 +52,9 @@ SCORE_EXTERN Chain_Control _API_extensions_List;
* This routine initializes the API extension handler.
*
*/
-
+
void _API_extensions_Initialization( void );
-
+
/*
* _API_extensions_Add
*
@@ -62,7 +62,7 @@ void _API_extensions_Initialization( void );
*
* XXX
*/
-
+
void _API_extensions_Add(
API_extensions_Control *the_extension
);
@@ -74,7 +74,7 @@ void _API_extensions_Add(
*
* XXX
*/
-
+
void _API_extensions_Run_predriver( void );
/*