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.


lots of changes...
[palacios.git] / palacios / src / palacios / vm_dev.c
index 753bfcd..8cb45b4 100644 (file)
@@ -6,7 +6,7 @@
 struct vm_device * allocate_device() {
 
   struct vm_device * dev = NULL;
-  VMMMalloc(struct vm_device *, dev, sizeof(struct vm_device));
+  V3_Malloc(struct vm_device *, dev, sizeof(struct vm_device));
 
   dev->ops = NULL;
   memset(dev->name, 0, 32);
@@ -37,6 +37,6 @@ struct vm_device * create_device(char * name, struct vm_device_ops * ops, void *
 }
 
 void free_device(struct vm_device * dev) {
-  VMMFree(dev);
+  V3_Free(dev);
 }