mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
cpus: vm_resume
Define the vm_resume helper, for use in subsequent patches. Signed-off-by: Steve Sistare <steven.sistare@oracle.com> Reviewed-by: Peter Xu <peterx@redhat.com> Link: https://lore.kernel.org/r/1704312341-66640-5-git-send-email-steven.sistare@oracle.com Signed-off-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
0f1db069b6
commit
9ff5e79f2e
2 changed files with 18 additions and 0 deletions
|
@ -748,6 +748,15 @@ void vm_start(void)
|
|||
}
|
||||
}
|
||||
|
||||
void vm_resume(RunState state)
|
||||
{
|
||||
if (runstate_is_live(state)) {
|
||||
vm_start();
|
||||
} else {
|
||||
runstate_set(state);
|
||||
}
|
||||
}
|
||||
|
||||
/* does a state transition even if the VM is already stopped,
|
||||
current state is forgotten forever */
|
||||
int vm_stop_force_state(RunState state)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue