summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k/cpu_asm.S
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-03-12 14:16:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-03-12 14:16:50 +0000
commit0067feb6930cb9af6d9c1607baf7fa536fb2a48c (patch)
tree2e929e129cbb8309e0a692dae6aa77707e83f702 /cpukit/score/cpu/m68k/cpu_asm.S
parentRegenerate. (diff)
downloadrtems-0067feb6930cb9af6d9c1607baf7fa536fb2a48c.tar.bz2
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1385/cpukit * cpu_asm.S: When the type rtems_boolean was switched to the C99 bool, the size changed from 4 bytes to 1 byte. The interrupt dispatching code accesses two boolean variables for scheduling purposes and the assembly implementations of this code did not get updated.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/m68k/cpu_asm.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/cpu/m68k/cpu_asm.S b/cpukit/score/cpu/m68k/cpu_asm.S
index 006922c227..216686bbfd 100644
--- a/cpukit/score/cpu/m68k/cpu_asm.S
+++ b/cpukit/score/cpu/m68k/cpu_asm.S
@@ -337,16 +337,16 @@ SYM (_ISR_Handler):
beq.b exit
#endif
#endif
- tstl SYM (_Context_Switch_necessary)
+ tstb SYM (_Context_Switch_necessary)
| Is thread switch necessary?
bne.b bframe | Yes, invoke dispatcher
- tstl SYM (_ISR_Signals_to_thread_executing)
+ tstb SYM (_ISR_Signals_to_thread_executing)
| signals sent to Run_thread
| while in interrupt handler?
beq.b exit | No, then exit
-bframe: clrl SYM (_ISR_Signals_to_thread_executing)
+bframe: clrb SYM (_ISR_Signals_to_thread_executing)
| If sent, will be processed
#if ( M68K_HAS_SEPARATE_STACKS == 1 )
movec msp,a0 | a0 = master stack pointer