summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-30 18:51:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-30 18:51:49 +0000
commit82b04a2b63dff05f84235c11539b3fcd171acaf4 (patch)
tree1bb6849b92e957e9a2204d4e1f9c0198f5e9203d
parent2010-07-30 Gedare Bloom <giddyup44@yahoo.com> (diff)
downloadrtems-82b04a2b63dff05f84235c11539b3fcd171acaf4.tar.bz2
2010-07-30 Gedare Bloom <giddyup44@yahoo.com>
PR 1599/cpukit * sh7032/score/cpu_asm.c, sh7045/score/cpu_asm.c, sh7750/score/cpu_asm.c, shgdb/score/cpu_asm.c: Rename _Context_Switch_necessary to _Thread_Dispatch_necessary to more properly reflect the intent.
-rw-r--r--c/src/lib/libcpu/sh/ChangeLog8
-rw-r--r--c/src/lib/libcpu/sh/sh7032/score/cpu_asm.c2
-rw-r--r--c/src/lib/libcpu/sh/sh7045/score/cpu_asm.c2
-rw-r--r--c/src/lib/libcpu/sh/sh7750/score/cpu_asm.c2
-rw-r--r--c/src/lib/libcpu/sh/shgdb/score/cpu_asm.c2
5 files changed, 12 insertions, 4 deletions
diff --git a/c/src/lib/libcpu/sh/ChangeLog b/c/src/lib/libcpu/sh/ChangeLog
index 33011caa9a..3361505190 100644
--- a/c/src/lib/libcpu/sh/ChangeLog
+++ b/c/src/lib/libcpu/sh/ChangeLog
@@ -1,3 +1,11 @@
+2010-07-30 Gedare Bloom <giddyup44@yahoo.com>
+
+ PR 1599/cpukit
+ * sh7032/score/cpu_asm.c, sh7045/score/cpu_asm.c,
+ sh7750/score/cpu_asm.c, shgdb/score/cpu_asm.c: Rename
+ _Context_Switch_necessary to _Thread_Dispatch_necessary to more
+ properly reflect the intent.
+
2010-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1573/cpukit
diff --git a/c/src/lib/libcpu/sh/sh7032/score/cpu_asm.c b/c/src/lib/libcpu/sh/sh7032/score/cpu_asm.c
index db731c8b68..ad2633c98f 100644
--- a/c/src/lib/libcpu/sh/sh7032/score/cpu_asm.c
+++ b/c/src/lib/libcpu/sh/sh7032/score/cpu_asm.c
@@ -176,7 +176,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
- if ( _Context_Switch_necessary ) {
+ if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}
diff --git a/c/src/lib/libcpu/sh/sh7045/score/cpu_asm.c b/c/src/lib/libcpu/sh/sh7045/score/cpu_asm.c
index be8f5c0a4c..05c2cf24be 100644
--- a/c/src/lib/libcpu/sh/sh7045/score/cpu_asm.c
+++ b/c/src/lib/libcpu/sh/sh7045/score/cpu_asm.c
@@ -178,7 +178,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
- if ( _Context_Switch_necessary ) {
+ if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}
diff --git a/c/src/lib/libcpu/sh/sh7750/score/cpu_asm.c b/c/src/lib/libcpu/sh/sh7750/score/cpu_asm.c
index ba3c909284..46f4aa1984 100644
--- a/c/src/lib/libcpu/sh/sh7750/score/cpu_asm.c
+++ b/c/src/lib/libcpu/sh/sh7750/score/cpu_asm.c
@@ -101,7 +101,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
- if ( _Context_Switch_necessary ) {
+ if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}
diff --git a/c/src/lib/libcpu/sh/shgdb/score/cpu_asm.c b/c/src/lib/libcpu/sh/shgdb/score/cpu_asm.c
index 771d493ea0..e8012fad92 100644
--- a/c/src/lib/libcpu/sh/shgdb/score/cpu_asm.c
+++ b/c/src/lib/libcpu/sh/shgdb/score/cpu_asm.c
@@ -75,7 +75,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
- if ( _Context_Switch_necessary ) {
+ if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}