summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/apiext.c
diff options
context:
space:
mode:
authorChristopher Kerl <zargyyoyo@gmail.com>2012-12-01 09:47:07 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-01 09:47:07 -0500
commitf839bf5ae259fe53353a00046adf2c9413df502a (patch)
treee636813af9a1b5af09df27c1a9a07873cb56a565 /cpukit/score/src/apiext.c
parentPrint MCSR and ESR. (diff)
downloadrtems-f839bf5ae259fe53353a00046adf2c9413df502a.tar.bz2
score misc: Score misc: Clean up Doxygen #10 (GCI 2012)
This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7983216
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/apiext.c26
1 files changed, 7 insertions, 19 deletions
diff --git a/cpukit/score/src/apiext.c b/cpukit/score/src/apiext.c
index b2ca87cba2..73dffee856 100644
--- a/cpukit/score/src/apiext.c
+++ b/cpukit/score/src/apiext.c
@@ -1,7 +1,12 @@
-/* apiext.c
+/**
+ * @file
*
- * XXX
+ * @brief Holding for API Extension Functions
*
+ * @ingroup ScoreAPIExtension
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -17,19 +22,11 @@
#include <rtems/system.h>
#include <rtems/score/apiext.h>
-/*
- * _API_extensions_Initialization
- */
-
void _API_extensions_Initialization( void )
{
_Chain_Initialize_empty( &_API_extensions_List );
}
-/*
- * _API_extensions_Add
- */
-
void _API_extensions_Add(
API_extensions_Control *the_extension
)
@@ -38,9 +35,6 @@ void _API_extensions_Add(
}
#if defined(FUNCTIONALITY_NOT_CURRENTLY_USED_BY_ANY_API)
- /*
- * _API_extensions_Run_predriver
- */
void _API_extensions_Run_predriver( void )
{
@@ -59,10 +53,6 @@ void _API_extensions_Add(
}
#endif
-/*
- * _API_extensions_Run_postdriver
- */
-
void _API_extensions_Run_postdriver( void )
{
Chain_Node *the_node;
@@ -83,5 +73,3 @@ void _API_extensions_Run_postdriver( void )
(*the_extension->postdriver_hook)();
}
}
-
-/* end of file */