mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Always process real timers regardless of singlestep mode (Jason Wessel).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4462 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
cf7c2ca5ff
commit
21b20814ed
2 changed files with 2 additions and 3 deletions
|
@ -420,7 +420,7 @@ int cpu_exec(CPUState *env1)
|
|||
#if defined(TARGET_I386)
|
||||
&& env->hflags & HF_GIF_MASK
|
||||
#endif
|
||||
&& !(env->singlestep_enabled & SSTEP_NOIRQ)) {
|
||||
&& likely(!(env->singlestep_enabled & SSTEP_NOIRQ))) {
|
||||
if (interrupt_request & CPU_INTERRUPT_DEBUG) {
|
||||
env->interrupt_request &= ~CPU_INTERRUPT_DEBUG;
|
||||
env->exception_index = EXCP_DEBUG;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue