Juan Quintela | f4dbe1b | 2017-04-05 15:54:10 +0200 | [diff] [blame] | 1 | /* |
| 2 | * QEMU live migration |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2008 |
| 5 | * Copyright Dell MessageOne 2008 |
| 6 | * Copyright Red Hat, Inc. 2015-2016 |
| 7 | * |
| 8 | * Authors: |
| 9 | * Anthony Liguori <aliguori@us.ibm.com> |
| 10 | * Charles Duffy <charles_duffy@messageone.com> |
| 11 | * Daniel P. Berrange <berrange@redhat.com> |
| 12 | * |
| 13 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 14 | * the COPYING file in the top-level directory. |
| 15 | * |
| 16 | * Contributions after 2012-01-13 are licensed under the terms of the |
| 17 | * GNU GPL, version 2 or (at your option) any later version. |
| 18 | */ |
| 19 | |
| 20 | #ifndef QEMU_MIGRATION_EXEC_H |
| 21 | #define QEMU_MIGRATION_EXEC_H |
Het Gala | 72a8192 | 2023-10-23 15:20:42 -0300 | [diff] [blame] | 22 | |
| 23 | #ifdef WIN32 |
| 24 | const char *exec_get_cmd_path(void); |
| 25 | #endif |
Het Gala | cbab4fa | 2023-10-23 15:20:46 -0300 | [diff] [blame] | 26 | void exec_start_incoming_migration(strList *host_port, Error **errp); |
Juan Quintela | f4dbe1b | 2017-04-05 15:54:10 +0200 | [diff] [blame] | 27 | |
Het Gala | cbab4fa | 2023-10-23 15:20:46 -0300 | [diff] [blame] | 28 | void exec_start_outgoing_migration(MigrationState *s, strList *host_port, |
Juan Quintela | f4dbe1b | 2017-04-05 15:54:10 +0200 | [diff] [blame] | 29 | Error **errp); |
| 30 | #endif |