mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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
This commit is contained in:
parent
e5d355d12e
commit
6a4955a813
11 changed files with 72 additions and 12 deletions
|
@ -24,10 +24,17 @@ static inline void regs_to_env(void)
|
|||
/* op_helper.c */
|
||||
void do_interrupt(CPUState *env);
|
||||
|
||||
static inline int cpu_has_work(CPUState *env1)
|
||||
{
|
||||
return (env1->interrupt_request & CPU_INTERRUPT_HARD) &&
|
||||
(env1->psret != 0);
|
||||
}
|
||||
|
||||
|
||||
static inline int cpu_halted(CPUState *env1) {
|
||||
if (!env1->halted)
|
||||
return 0;
|
||||
if ((env1->interrupt_request & CPU_INTERRUPT_HARD) && (env1->psret != 0)) {
|
||||
if (cpu_has_work(env1)) {
|
||||
env1->halted = 0;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue