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.


code restructuring
[palacios.git] / palacios / include / palacios / vmm.h
similarity index 92%
rename from palacios/include/geekos/vmm.h
rename to palacios/include/palacios/vmm.h
index 896598f..d81f4b6 100644 (file)
@@ -2,13 +2,13 @@
 #define __VMM_H
 
 
-#include <geekos/ktypes.h>
-#include <geekos/string.h>
+//#include <palacios/vmm_types.h>
+#include <palacios/vmm_string.h>
 
-#include <geekos/vmm_mem.h>
-//#include <geekos/vmm_paging.h>
+#include <palacios/vmm_mem.h>
+//#include <palacios/vmm_paging.h>
 
-#include <geekos/vm_guest.h>
+#include <palacios/vm_guest.h>
 
 /* utility definitions */
 #define PrintDebug(fmt, args...)                       \
@@ -84,7 +84,7 @@ struct vmm_os_hooks {
   void *(*allocate_pages)(int numPages);
   void (*free_page)(void * page);
 
-  void *(*malloc)(uint_t size);
+  void *(*malloc)(unsigned int size);
   void (*free)(void * addr);
 
   void *(*paddr_to_vaddr)(void *addr);