mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 11:04:58 -06:00
cpu-exec: Change cpu_loop_exit() argument to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
d5a11fefef
commit
5638d180d6
28 changed files with 64 additions and 67 deletions
|
@ -72,7 +72,7 @@ void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx,
|
|||
helper_top_evaluate_flags(env);
|
||||
}
|
||||
}
|
||||
cpu_loop_exit(env);
|
||||
cpu_loop_exit(cs);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -83,7 +83,7 @@ void helper_raise_exception(CPUCRISState *env, uint32_t index)
|
|||
CPUState *cs = CPU(cris_env_get_cpu(env));
|
||||
|
||||
cs->exception_index = index;
|
||||
cpu_loop_exit(env);
|
||||
cpu_loop_exit(cs);
|
||||
}
|
||||
|
||||
void helper_tlb_flush_pid(CPUCRISState *env, uint32_t pid)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue