mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
migration: Export a function that tells if the migration has finished correctly
This will allow us to hide the state values. Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
e0eb7390b0
commit
7073693bfb
3 changed files with 5 additions and 5 deletions
|
@ -364,9 +364,9 @@ void remove_migration_state_change_notifier(Notifier *notify)
|
|||
notifier_list_remove(&migration_state_notifiers, notify);
|
||||
}
|
||||
|
||||
int get_migration_state(void)
|
||||
bool migration_has_finished(MigrationState *s)
|
||||
{
|
||||
return migrate_get_current()->state;
|
||||
return s->state == MIG_STATE_COMPLETED;
|
||||
}
|
||||
|
||||
void migrate_fd_connect(MigrationState *s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue