/[qemu]/qemu/cpu-exec.c
ViewVC logotype

Diff of /qemu/cpu-exec.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.65 by bellard, Sat Nov 26 10:38:38 2005 UTC revision 1.66 by bellard, Sat Nov 26 10:46:38 2005 UTC
# Line 274  int cpu_exec(CPUState *env1) Line 274  int cpu_exec(CPUState *env1)
274              return EXCP_HALTED;              return EXCP_HALTED;
275          }          }
276      }      }
277    #elif defined(TARGET_ARM)
278        if (env1->halted) {
279            /* An interrupt wakes the CPU even if the I and F CPSR bits are
280               set.  */
281            if (env1->interrupt_request
282                & (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD)) {
283                env1->halted = 0;
284            } else {
285                return EXCP_HALTED;
286            }
287        }
288  #endif  #endif
289    
290      cpu_single_env = env1;      cpu_single_env = env1;

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26