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 guest initialization to vm_guest.c, added guest_info hypercall
[palacios.git] / palacios / include / palacios / vmm_hypercall.h
index 26d14b4..333c812 100644 (file)
@@ -43,6 +43,15 @@ int v3_handle_hypercall(struct guest_info * info);
 
 
 
+typedef enum {
+    MEM_OFFSET_HCALL = 0x1000, 
+    GUEST_INFO_HCALL = 0x3000,
+    TELEMETRY_HCALL = 0x3001,
+    OS_DEBUG_HCALL = 0xc0c0
+} hcall_id_t;
+
+
+
 #endif
 
 #endif