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 / include / palacios / vm_guest.h
index d67fd9f..4b2728f 100644 (file)
@@ -38,6 +38,8 @@
 #include <palacios/vmm_regs.h>
 #include <palacios/vmm_extensions.h>
 
+
+
 #ifdef CONFIG_TELEMETRY
 #include <palacios/vmm_telemetry.h>
 #endif
 struct v3_sym_core_state;
 #endif
 
+#ifdef CONFIG_INSPECTOR
+#include  <palacios/vmm_inspector.h>
+#endif
+
+
 #include <palacios/vmm_config.h>
 
 struct v3_intr_state;
@@ -180,6 +187,10 @@ struct v3_vm_info {
     struct v3_telemetry_state telemetry;
 #endif
 
+#ifdef CONFIG_INSPECTOR
+    struct v3_inspector_state inspector;
+#endif
+
     uint64_t yield_cycle_period;