summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/score/cpu/m32c/ChangeLog6
-rw-r--r--cpukit/score/cpu/m32c/cpu_asm.c2
-rw-r--r--cpukit/score/cpu/m32r/ChangeLog6
-rw-r--r--cpukit/score/cpu/m32r/cpu_asm.c2
-rw-r--r--cpukit/score/cpu/no_cpu/ChangeLog6
-rw-r--r--cpukit/score/cpu/no_cpu/cpu_asm.c2
6 files changed, 21 insertions, 3 deletions
diff --git a/cpukit/score/cpu/m32c/ChangeLog b/cpukit/score/cpu/m32c/ChangeLog
index 85165efce6..6ef29ded04 100644
--- a/cpukit/score/cpu/m32c/ChangeLog
+++ b/cpukit/score/cpu/m32c/ChangeLog
@@ -1,3 +1,9 @@
+2010-07-30 Gedare Bloom <giddyup44@yahoo.com>
+
+ PR 1599/cpukit
+ * cpu_asm.c: Rename _Context_Switch_necessary to
+ _Thread_Dispatch_necessary to more properly reflect the intent.
+
2010-07-29 Gedare Bloom <giddyup44@yahoo.com>
PR 1635/cpukit
diff --git a/cpukit/score/cpu/m32c/cpu_asm.c b/cpukit/score/cpu/m32c/cpu_asm.c
index e7cf39c786..81130dadb2 100644
--- a/cpukit/score/cpu/m32c/cpu_asm.c
+++ b/cpukit/score/cpu/m32c/cpu_asm.c
@@ -89,7 +89,7 @@ void _ISR_Handler(void)
* if ( _Thread_Dispatch_disable_level )
* goto the label "exit interrupt (simple case)"
*
- * if ( _Context_Switch_necessary ) {
+ * if ( _Thread_Dispatch_necessary ) {
* call _Thread_Dispatch() or prepare to return to _ISR_Dispatch
* prepare to get out of interrupt
* return from interrupt (maybe to _ISR_Dispatch)
diff --git a/cpukit/score/cpu/m32r/ChangeLog b/cpukit/score/cpu/m32r/ChangeLog
index 50e79cc311..146721e720 100644
--- a/cpukit/score/cpu/m32r/ChangeLog
+++ b/cpukit/score/cpu/m32r/ChangeLog
@@ -1,3 +1,9 @@
+2010-07-30 Gedare Bloom <giddyup44@yahoo.com>
+
+ PR 1599/cpukit
+ * cpu_asm.c: Rename _Context_Switch_necessary to
+ _Thread_Dispatch_necessary to more properly reflect the intent.
+
2010-07-29 Gedare Bloom <giddyup44@yahoo.com>
PR 1635/cpukit
diff --git a/cpukit/score/cpu/m32r/cpu_asm.c b/cpukit/score/cpu/m32r/cpu_asm.c
index 9881ade8af..8ab01849bd 100644
--- a/cpukit/score/cpu/m32r/cpu_asm.c
+++ b/cpukit/score/cpu/m32r/cpu_asm.c
@@ -79,7 +79,7 @@ void _ISR_Handler(void)
* if ( _Thread_Dispatch_disable_level )
* goto the label "exit interrupt (simple case)"
*
- * if ( _Context_Switch_necessary ) {
+ * if ( _Thread_Dispatch_necessary ) {
* call _Thread_Dispatch() or prepare to return to _ISR_Dispatch
* prepare to get out of interrupt
* return from interrupt (maybe to _ISR_Dispatch)
diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog
index 467dfe8203..bb06636adb 100644
--- a/cpukit/score/cpu/no_cpu/ChangeLog
+++ b/cpukit/score/cpu/no_cpu/ChangeLog
@@ -1,3 +1,9 @@
+2010-07-30 Gedare Bloom <giddyup44@yahoo.com>
+
+ PR 1599/cpukit
+ * cpu_asm.c: Rename _Context_Switch_necessary to
+ _Thread_Dispatch_necessary to more properly reflect the intent.
+
2010-07-29 Gedare Bloom <giddyup44@yahoo.com>
PR 1635/cpukit
diff --git a/cpukit/score/cpu/no_cpu/cpu_asm.c b/cpukit/score/cpu/no_cpu/cpu_asm.c
index 91957204c4..32c3f1f8c7 100644
--- a/cpukit/score/cpu/no_cpu/cpu_asm.c
+++ b/cpukit/score/cpu/no_cpu/cpu_asm.c
@@ -168,7 +168,7 @@ void _ISR_Handler(void)
* if ( _Thread_Dispatch_disable_level )
* goto the label "exit interrupt (simple case)"
*
- * if ( _Context_Switch_necessary ) {
+ * if ( _Thread_Dispatch_necessary ) {
* call _Thread_Dispatch() or prepare to return to _ISR_Dispatch
* prepare to get out of interrupt
* return from interrupt (maybe to _ISR_Dispatch)