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.
This commit is contained in:
Joel Sherrill
2010-07-30 18:51:49 +00:00
parent 7814f92a5d
commit 82b04a2b63
5 changed files with 12 additions and 4 deletions

View File

@@ -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

View File

@@ -176,7 +176,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
if ( _Context_Switch_necessary ) {
if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}

View File

@@ -178,7 +178,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
if ( _Context_Switch_necessary ) {
if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}

View File

@@ -101,7 +101,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
if ( _Context_Switch_necessary ) {
if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}

View File

@@ -75,7 +75,7 @@ void __ISR_Handler( uint32_t vector)
return;
}
if ( _Context_Switch_necessary ) {
if ( _Thread_Dispatch_necessary ) {
_Thread_Dispatch();
}
}