We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2905749 commit c0c1dc9Copy full SHA for c0c1dc9
target-cris/exec.h
@@ -37,9 +37,7 @@ static inline int cpu_halted(CPUState *env) {
37
if (!env->halted)
38
return 0;
39
40
- /* IRQ, NMI and GURU execeptions wakes us up. */
41
- if (env->interrupt_request
42
- & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI)) {
+ if (cpu_has_work(env)) {
43
env->halted = 0;
44
45
}
target-microblaze/exec.h
@@ -36,9 +36,7 @@ static inline int cpu_halted(CPUState *env) {
36
0 commit comments