diff options
author | Uri Lublin <uril@qumranet.com> | 2006-11-23 15:23:41 +0000 |
---|---|---|
committer | Uri Lublin <uril@qumranet.com> | 2006-11-23 15:23:41 +0000 |
commit | 5d1271dd97eabc41615e9800755b18693a0bb6ae (patch) | |
tree | 859fbd8597c6675150a608db2cbdb9ab5524bc22 /migration.h | |
parent | kvm: svm module author and license (diff) | |
download | qemu-kvm-5d1271dd97eabc41615e9800755b18693a0bb6ae.tar.gz qemu-kvm-5d1271dd97eabc41615e9800755b18693a0bb6ae.tar.bz2 qemu-kvm-5d1271dd97eabc41615e9800755b18693a0bb6ae.zip |
qemu: monitor: add 'migration' command
All subcommands but 'help' are not implemented yet.
Diffstat (limited to 'migration.h')
-rw-r--r-- | migration.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/migration.h b/migration.h new file mode 100644 index 000000000..c93662d0a --- /dev/null +++ b/migration.h @@ -0,0 +1,14 @@ +#ifndef QEMU_MIGRATION_H +#define QEMU_MIGRATION_H + +/* migration commands */ +void do_migration_listen(char *arg1, char *arg2); +void do_migration_connect(char *arg1, char *arg2); +void do_migration_getfd(int fd); +void do_migration_start(char *deadoralive); +void do_migration_cancel(void); +void do_migration_status(void); +void do_migration_set(char *fmt, ...); +void do_migration_show(void); + +#endif /* QEMU_MIGRATION_H */ |