diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-24 18:03:20 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-24 18:03:20 +0000 |
commit | 6a4955a813467089549f865600284e6be0d018fc (patch) | |
tree | c5fdcc2861b662217e47f9271b6bf15103e2b793 /target-ppc | |
parent | qemu: mutex/thread/cond wrappers and configure tweaks (Marcelo Tosatti) (diff) | |
download | qemu-kvm-6a4955a813467089549f865600284e6be0d018fc.tar.gz qemu-kvm-6a4955a813467089549f865600284e6be0d018fc.tar.bz2 qemu-kvm-6a4955a813467089549f865600284e6be0d018fc.zip |
qemu: per-arch cpu_has_work (Marcelo Tosatti)
Blue Swirl: fix Sparc32 breakage
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7238 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/exec.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target-ppc/exec.h b/target-ppc/exec.h index d89698c63..f6b9ee6c8 100644 --- a/target-ppc/exec.h +++ b/target-ppc/exec.h @@ -44,11 +44,17 @@ static always_inline void regs_to_env (void) { } +static always_inline int cpu_has_work(CPUState *env) +{ + return (msr_ee && (env->interrupt_request & CPU_INTERRUPT_HARD)); +} + + static always_inline int cpu_halted (CPUState *env) { if (!env->halted) return 0; - if (msr_ee && (env->interrupt_request & CPU_INTERRUPT_HARD)) { + if (cpu_has_work(env)) { env->halted = 0; return 0; } |