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.


moved xed around to setup the decoder interface
[palacios.git] / palacios / include / palacios / vmm.h
index 306b103..9fbc895 100644 (file)
 
 #define V3_Hook_Interrupt(irq, opaque)                         \
   ({                                                           \
-    int ret = 0;                                                       \
+    int ret = 0;                                               \
     extern struct vmm_os_hooks * os_hooks;                     \
     if ((os_hooks) && (os_hooks)->hook_interrupt) {            \
       ret = (os_hooks)->hook_interrupt(irq, opaque);           \
@@ -156,13 +156,6 @@ typedef enum v3_cpu_arch {V3_INVALID_CPU, V3_SVM_CPU, V3_SVM_REV3_CPU, V3_VMX_CP
 
 #endif //!__V3VEE__
 
-/*
-  #ifdef __V3VEE__
-  typedef struct guest_info v3_guest_t;
-  #else
-  typedef void v3_guest_t;
-  #endif
-*/
 
 
 //
@@ -213,8 +206,6 @@ struct vmm_os_hooks {
 
 
 
-  // Filled in by initialization
-
 };