mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
add cpu_is_stopped helper
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
2705d56a6a
commit
3ae9501c5b
2 changed files with 6 additions and 0 deletions
|
@ -821,6 +821,7 @@ void cpu_watchpoint_remove_all(CPUState *env, int mask);
|
|||
|
||||
void cpu_single_step(CPUState *env, int enabled);
|
||||
void cpu_reset(CPUState *s);
|
||||
int cpu_is_stopped(CPUState *env);
|
||||
void run_on_cpu(CPUState *env, void (*func)(void *data), void *data);
|
||||
|
||||
#define CPU_LOG_TB_OUT_ASM (1 << 0)
|
||||
|
|
5
cpus.c
5
cpus.c
|
@ -91,6 +91,11 @@ void cpu_synchronize_all_post_init(void)
|
|||
}
|
||||
}
|
||||
|
||||
int cpu_is_stopped(CPUState *env)
|
||||
{
|
||||
return !vm_running || env->stopped;
|
||||
}
|
||||
|
||||
static void do_vm_stop(int reason)
|
||||
{
|
||||
if (vm_running) {
|
||||
|
|
Loading…
Add table
Reference in a new issue