summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-24 23:43:20 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-24 23:43:20 +0000
commit7c2f2448499f1ad342a56ecf1b778f9a290f80fd (patch)
treed5631c305e97205ead63915f7bc07fb2d5cd8cda
parent2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-7c2f2448499f1ad342a56ecf1b778f9a290f80fd.tar.bz2
2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead print script.
-rw-r--r--cpukit/score/cpu/mips/ChangeLog5
-rw-r--r--cpukit/score/cpu/mips/cpu.c15
-rw-r--r--cpukit/score/cpu/nios2/ChangeLog5
-rw-r--r--cpukit/score/cpu/nios2/cpu.c15
-rw-r--r--cpukit/score/cpu/no_cpu/ChangeLog5
-rw-r--r--cpukit/score/cpu/no_cpu/cpu.c15
-rw-r--r--cpukit/score/cpu/sh/ChangeLog5
-rw-r--r--cpukit/score/cpu/sh/cpu.c12
-rw-r--r--cpukit/score/cpu/sparc/ChangeLog5
-rw-r--r--cpukit/score/cpu/sparc/cpu.c15
-rw-r--r--cpukit/score/cpu/sparc64/ChangeLog5
-rw-r--r--cpukit/score/cpu/sparc64/cpu.c6
12 files changed, 56 insertions, 52 deletions
diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog
index 1404c8626c..505596092e 100644
--- a/cpukit/score/cpu/mips/ChangeLog
+++ b/cpukit/score/cpu/mips/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Remove /*PAGE markers which were interpreted by a long dead
+ print script.
+
2011-05-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Reformat.
diff --git a/cpukit/score/cpu/mips/cpu.c b/cpukit/score/cpu/mips/cpu.c
index e547e4d684..c4b8dce4a7 100644
--- a/cpukit/score/cpu/mips/cpu.c
+++ b/cpukit/score/cpu/mips/cpu.c
@@ -91,8 +91,7 @@ void _CPU_Initialize(void)
#endif
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*
* This routine returns the current interrupt level.
@@ -173,8 +172,7 @@ void _CPU_ISR_Set_level( uint32_t new_level )
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*
* Input parameters:
@@ -201,8 +199,7 @@ void _CPU_ISR_install_raw_handler(
*/
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -241,8 +238,7 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Install_interrupt_stack
*/
@@ -294,8 +290,7 @@ void _CPU_Context_Initialize(
}
-/*PAGE
- *
+/*
* _CPU_Internal_threads_Idle_thread_body
*
* NOTES:
diff --git a/cpukit/score/cpu/nios2/ChangeLog b/cpukit/score/cpu/nios2/ChangeLog
index 276eeb8ba4..1919af71d2 100644
--- a/cpukit/score/cpu/nios2/ChangeLog
+++ b/cpukit/score/cpu/nios2/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Remove /*PAGE markers which were interpreted by a long dead
+ print script.
+
2011-05-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Reformat.
diff --git a/cpukit/score/cpu/nios2/cpu.c b/cpukit/score/cpu/nios2/cpu.c
index ff24be7efd..5037293c1e 100644
--- a/cpukit/score/cpu/nios2/cpu.c
+++ b/cpukit/score/cpu/nios2/cpu.c
@@ -42,8 +42,7 @@ void _CPU_Initialize(void)
/* FP context initialization support goes here */
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*
* NO_CPU Specific Information:
@@ -60,8 +59,7 @@ uint32_t _CPU_ISR_Get_level( void )
return 0;
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*
* NO_CPU Specific Information:
@@ -81,8 +79,7 @@ void _CPU_ISR_install_raw_handler(
*/
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -125,8 +122,7 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Install_interrupt_stack
*
* NO_CPU Specific Information:
@@ -138,8 +134,7 @@ void _CPU_Install_interrupt_stack( void )
{
}
-/*PAGE
- *
+/*
* _CPU_Thread_Idle_body
*
* NOTES:
diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog
index 9170d058ac..5646d802c9 100644
--- a/cpukit/score/cpu/no_cpu/ChangeLog
+++ b/cpukit/score/cpu/no_cpu/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Remove /*PAGE markers which were interpreted by a long dead
+ print script.
+
2011-05-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Reformat.
diff --git a/cpukit/score/cpu/no_cpu/cpu.c b/cpukit/score/cpu/no_cpu/cpu.c
index 86d8852ff3..0a8a1a24b3 100644
--- a/cpukit/score/cpu/no_cpu/cpu.c
+++ b/cpukit/score/cpu/no_cpu/cpu.c
@@ -43,8 +43,7 @@ void _CPU_Initialize(void)
/* FP context initialization support goes here */
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*
* NO_CPU Specific Information:
@@ -61,8 +60,7 @@ uint32_t _CPU_ISR_Get_level( void )
return 0;
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*
* NO_CPU Specific Information:
@@ -82,8 +80,7 @@ void _CPU_ISR_install_raw_handler(
*/
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -126,8 +123,7 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Install_interrupt_stack
*
* NO_CPU Specific Information:
@@ -139,8 +135,7 @@ void _CPU_Install_interrupt_stack( void )
{
}
-/*PAGE
- *
+/*
* _CPU_Thread_Idle_body
*
* NOTES:
diff --git a/cpukit/score/cpu/sh/ChangeLog b/cpukit/score/cpu/sh/ChangeLog
index c62f5c317f..a54c370bae 100644
--- a/cpukit/score/cpu/sh/ChangeLog
+++ b/cpukit/score/cpu/sh/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Remove /*PAGE markers which were interpreted by a long dead
+ print script.
+
2011-05-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Reformat.
diff --git a/cpukit/score/cpu/sh/cpu.c b/cpukit/score/cpu/sh/cpu.c
index f6f85e3c4c..9d6e48d315 100644
--- a/cpukit/score/cpu/sh/cpu.c
+++ b/cpukit/score/cpu/sh/cpu.c
@@ -71,8 +71,7 @@ void _CPU_Initialize(void)
_CPU_ISR_Set_level( level ) ;
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*/
@@ -89,8 +88,7 @@ uint32_t _CPU_ISR_Get_level( void )
return ( _mask);
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*/
@@ -124,8 +122,7 @@ void _CPU_ISR_install_raw_handler(
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -168,8 +165,7 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Thread_Idle_body
*
* NOTES:
diff --git a/cpukit/score/cpu/sparc/ChangeLog b/cpukit/score/cpu/sparc/ChangeLog
index 536f8d122f..6e6fc2e73b 100644
--- a/cpukit/score/cpu/sparc/ChangeLog
+++ b/cpukit/score/cpu/sparc/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Remove /*PAGE markers which were interpreted by a long dead
+ print script.
+
2011-06-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h, rtems/score/sparc.h, rtems/score/types.h: Convert
diff --git a/cpukit/score/cpu/sparc/cpu.c b/cpukit/score/cpu/sparc/cpu.c
index 52ba52f738..383319d0d7 100644
--- a/cpukit/score/cpu/sparc/cpu.c
+++ b/cpukit/score/cpu/sparc/cpu.c
@@ -36,8 +36,7 @@ const CPU_Trap_table_entry _CPU_Trap_slot_template = {
0xa6102000 /* mov _vector, %l3 */
};
-/*PAGE
- *
+/*
* _CPU_Initialize
*
* This routine performs processor dependent initialization.
@@ -73,8 +72,7 @@ void _CPU_Initialize(void)
_CPU_ISR_Dispatch_disable = 0;
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*
* Input Parameters: NONE
@@ -92,8 +90,7 @@ uint32_t _CPU_ISR_Get_level( void )
return level;
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*
* This routine installs the specified handler as a "raw" non-executive
@@ -200,8 +197,7 @@ void _CPU_ISR_install_raw_handler(
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -253,8 +249,7 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ real_vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Context_Initialize
*
* This kernel routine initializes the basic non-FP context area associated
diff --git a/cpukit/score/cpu/sparc64/ChangeLog b/cpukit/score/cpu/sparc64/ChangeLog
index c685863786..ad484fb542 100644
--- a/cpukit/score/cpu/sparc64/ChangeLog
+++ b/cpukit/score/cpu/sparc64/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c: Remove /*PAGE markers which were interpreted by a long dead
+ print script.
+
2011-05-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Reformat.
diff --git a/cpukit/score/cpu/sparc64/cpu.c b/cpukit/score/cpu/sparc64/cpu.c
index 3a415229cc..279a7b448d 100644
--- a/cpukit/score/cpu/sparc64/cpu.c
+++ b/cpukit/score/cpu/sparc64/cpu.c
@@ -20,8 +20,7 @@
#include <rtems/score/isr.h>
#include <rtems/rtems/cache.h>
-/*PAGE
- *
+/*
* _CPU_Initialize
*
* This routine performs processor dependent initialization.
@@ -58,8 +57,7 @@ void _CPU_Initialize(void)
_CPU_ISR_Dispatch_disable = 0;
}
-/*PAGE
- *
+/*
* _CPU_Context_Initialize
*
* This kernel routine initializes the basic non-FP context area associated