summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/no_cpu/cpu.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-12-07 09:57:04 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-07 09:57:04 -0500
commitb7185613e8a572fd35b0bed21a8e0f1fdecfc668 (patch)
treef4e9b124a0ef923142b0cb2a7e5bb60824e0ef16 /cpukit/score/cpu/no_cpu/cpu.c
parentsapi misc: Clean up Doxygen GCI task #1 (diff)
downloadrtems-b7185613e8a572fd35b0bed21a8e0f1fdecfc668.tar.bz2
score misc: Clean up Doxygen GCI Task #12
http://www.google-melange.com/gci/task/view/google/gci2012/7983217
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/no_cpu/cpu.c47
1 files changed, 6 insertions, 41 deletions
diff --git a/cpukit/score/cpu/no_cpu/cpu.c b/cpukit/score/cpu/no_cpu/cpu.c
index 89162bb411..287e5d6e18 100644
--- a/cpukit/score/cpu/no_cpu/cpu.c
+++ b/cpukit/score/cpu/no_cpu/cpu.c
@@ -1,7 +1,10 @@
-/*
- * XXX CPU Dependent Source
- *
+/**
+ * @file
*
+ * @brief No CPU Dependent Source
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -18,17 +21,6 @@
#include <rtems/score/isr.h>
#include <rtems/score/wkspace.h>
-/* _CPU_Initialize
- *
- * This routine performs processor dependent initialization.
- *
- * INPUT PARAMETERS: NONE
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
void _CPU_Initialize(void)
{
/*
@@ -41,14 +33,6 @@ void _CPU_Initialize(void)
/* FP context initialization support goes here */
}
-/*
- * _CPU_ISR_Get_level
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
uint32_t _CPU_ISR_Get_level( void )
{
/*
@@ -78,25 +62,6 @@ void _CPU_ISR_install_raw_handler(
*/
}
-/*
- * _CPU_ISR_install_vector
- *
- * This kernel routine installs the RTEMS handler for the
- * specified vector.
- *
- * Input parameters:
- * vector - interrupt vector number
- * old_handler - former ISR for this vector number
- * new_handler - replacement ISR for this vector number
- *
- * Output parameters: NONE
- *
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
void _CPU_ISR_install_vector(
uint32_t vector,
proc_ptr new_handler,