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-alpha | |
parent | e5d355d12ed417fbde1c707121ec8fb4070d7667 (diff) | |
download | qemu-6a4955a813467089549f865600284e6be0d018fc.tar.gz qemu-6a4955a813467089549f865600284e6be0d018fc.tar.bz2 qemu-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-alpha')
-rw-r--r-- | target-alpha/exec.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/target-alpha/exec.h b/target-alpha/exec.h index 9ea70305ef..77eaf53c10 100644 --- a/target-alpha/exec.h +++ b/target-alpha/exec.h @@ -48,10 +48,15 @@ static always_inline void regs_to_env(void) { } +static always_inline int cpu_has_work(CPUState *env) +{ + return (env->interrupt_request & CPU_INTERRUPT_HARD); +} + static always_inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; - if (env->interrupt_request & CPU_INTERRUPT_HARD) { + if (cpu_has_work(env)) { env->halted = 0; return 0; } |