mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
migration: Export exec.c functions in its own file
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
08a0aee15c
commit
f4dbe1bf34
4 changed files with 28 additions and 4 deletions
26
migration/exec.h
Normal file
26
migration/exec.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* QEMU live migration
|
||||
*
|
||||
* Copyright IBM, Corp. 2008
|
||||
* Copyright Dell MessageOne 2008
|
||||
* Copyright Red Hat, Inc. 2015-2016
|
||||
*
|
||||
* Authors:
|
||||
* Anthony Liguori <aliguori@us.ibm.com>
|
||||
* Charles Duffy <charles_duffy@messageone.com>
|
||||
* Daniel P. Berrange <berrange@redhat.com>
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2. See
|
||||
* the COPYING file in the top-level directory.
|
||||
*
|
||||
* Contributions after 2012-01-13 are licensed under the terms of the
|
||||
* GNU GPL, version 2 or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef QEMU_MIGRATION_EXEC_H
|
||||
#define QEMU_MIGRATION_EXEC_H
|
||||
void exec_start_incoming_migration(const char *host_port, Error **errp);
|
||||
|
||||
void exec_start_outgoing_migration(MigrationState *s, const char *host_port,
|
||||
Error **errp);
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue