Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added inspection framework
[palacios.git] / palacios / src / palacios / vm_guest.c
index 92f49b6..b8cc549 100644 (file)
@@ -530,6 +530,10 @@ int v3_init_vm(struct v3_vm_info * vm) {
        v3_set_foreground_vm(vm);
     }
 
+#ifdef CONFIG_INSPECTOR
+    v3_init_inspector(vm);
+#endif
+
 #ifdef CONFIG_TELEMETRY
     v3_init_telemetry(vm);
 #endif
@@ -657,6 +661,10 @@ int v3_init_core(struct guest_info * core) {
     v3_cpu_arch_t cpu_type = v3_get_cpu_type(V3_Get_CPU());
     struct v3_vm_info * vm = core->vm_info;
 
+#ifdef CONFIG_INSPECTOR
+    v3_init_inspector_core(core);
+#endif
+
     /*
      * Initialize the subsystem data strutures
      */