X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_checkpoint.h;h=14af67a2fb6c4a6a9ade66133c73d2eec5b8d75b;hb=3716aafce2de9e12ed62bee37968bfc0e0eaed44;hp=17beb5811247b9521d357aa72c4649eb5f2610a2;hpb=e61e0890e6f13b1362cfffdcd287e90f1d41e443;p=palacios.git diff --git a/palacios/include/palacios/vmm_checkpoint.h b/palacios/include/palacios/vmm_checkpoint.h index 17beb58..14af67a 100644 --- a/palacios/include/palacios/vmm_checkpoint.h +++ b/palacios/include/palacios/vmm_checkpoint.h @@ -12,6 +12,7 @@ * All rights reserved. * * Authors: Madhav Suresh + * Mark Cartwright (live migration) * * This is free software. You are permitted to use, * redistribute, and modify it as specified in the file "V3VEE_LICENSE". @@ -77,6 +78,11 @@ struct v3_chkpt_ctx * v3_chkpt_open_ctx(struct v3_chkpt * chkpt, struct v3_chkpt int v3_chkpt_save_vm(struct v3_vm_info * vm, char * store, char * url); int v3_chkpt_load_vm(struct v3_vm_info * vm, char * store, char * url); +#ifdef V3_CONFIG_LIVE_MIGRATION +int v3_chkpt_send_vm(struct v3_vm_info * vm, char * store, char * url); +int v3_chkpt_receive_vm(struct v3_vm_info * vm, char * store, char * url); +#endif + int V3_init_checkpoint(); int V3_deinit_checkpoint();