summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/unix/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-09 14:21:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-09 14:21:37 +0000
commit8a38f3b1e5cb8f5e8e680e05ffbf7e0eaf54de2d (patch)
tree6dedefb8be02a15744a68ba32516425c7f2de0e2 /c/src/exec/score/cpu/unix/cpu.c
parentchanged synchronization algorithm to be a single list of enumerated states (diff)
downloadrtems-8a38f3b1e5cb8f5e8e680e05ffbf7e0eaf54de2d.tar.bz2
added clear of _ISR_Signals_to_thread_executing
Diffstat (limited to 'c/src/exec/score/cpu/unix/cpu.c')
-rw-r--r--c/src/exec/score/cpu/unix/cpu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/c/src/exec/score/cpu/unix/cpu.c b/c/src/exec/score/cpu/unix/cpu.c
index de3e6a7118..e32410aa35 100644
--- a/c/src/exec/score/cpu/unix/cpu.c
+++ b/c/src/exec/score/cpu/unix/cpu.c
@@ -622,6 +622,7 @@ void _CPU_ISR_Handler(int vector)
if (_Thread_Dispatch_disable_level == 0 &&
(_Context_Switch_necessary || _ISR_Signals_to_thread_executing)) {
+ _ISR_Signals_to_thread_executing = FALSE;
_CPU_ISR_Enable(0);
_Thread_Dispatch();
}