X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_symbiotic.h;h=676f901134489834e368df0c7208efdee3aae960;hb=276cfa264720edddc1677e35c6a300596965de7d;hp=60bbb8f033296805954c8d57f667a57a09184b65;hpb=ee1279646a778613b23a42350b903ebb57c068f8;p=palacios.git diff --git a/palacios/include/palacios/vmm_symbiotic.h b/palacios/include/palacios/vmm_symbiotic.h index 60bbb8f..676f901 100644 --- a/palacios/include/palacios/vmm_symbiotic.h +++ b/palacios/include/palacios/vmm_symbiotic.h @@ -27,11 +27,11 @@ #include -#ifdef CONFIG_SYMCALL +#ifdef V3_CONFIG_SYMCALL #include #endif -#ifdef CONFIG_SYMMOD +#ifdef V3_CONFIG_SYMMOD #include #endif @@ -40,8 +40,8 @@ struct v3_sym_vm_state { struct v3_symspy_global_state symspy_state; -#ifdef CONFIG_SYMMOD - struct v3_symmod_global_state symmod_state; +#ifdef V3_CONFIG_SYMMOD + struct v3_symmod_state symmod_state; #endif }; @@ -49,18 +49,18 @@ struct v3_sym_vm_state { struct v3_sym_core_state { struct v3_symspy_local_state symspy_state; -#ifdef CONFIG_SYMCALL +#ifdef V3_CONFIG_SYMCALL struct v3_symcall_state symcall_state; #endif -#ifdef CONFIG_SYMMOD - struct v3_symmod_local_state symmod_state; -#endif }; int v3_init_symbiotic_vm(struct v3_vm_info * vm); +int v3_deinit_symbiotic_vm(struct v3_vm_info * vm); + int v3_init_symbiotic_core(struct guest_info * core); +int v3_deinit_symbiotic_core(struct guest_info * core); #endif