mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
migration: Create include for migration snapshots
Start removing migration code from sysemu/sysemu.h. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
e1a3ecee3b
commit
5e22479ae2
7 changed files with 34 additions and 12 deletions
21
include/migration/snapshot.h
Normal file
21
include/migration/snapshot.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* QEMU snapshots
|
||||
*
|
||||
* Copyright (c) 2004-2008 Fabrice Bellard
|
||||
* Copyright (c) 2009-2015 Red Hat Inc
|
||||
*
|
||||
* Authors:
|
||||
* Juan Quintela <quintela@redhat.com>
|
||||
*
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*/
|
||||
|
||||
#ifndef QEMU_MIGRATION_SNAPSHOT_H
|
||||
#define QEMU_MIGRATION_SNAPSHOT_H
|
||||
|
||||
int save_snapshot(const char *name, Error **errp);
|
||||
int load_snapshot(const char *name, Error **errp);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue