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 / vmm_irq.c
index 8210c72..1074245 100644 (file)
@@ -72,7 +72,7 @@ int hook_irq(struct vmm_irq_map * map, uint_t irq,
             void * private_data) {
 
   struct vmm_irq_hook * hook = NULL;
-  VMMMalloc(struct vmm_irq_hook *, hook, sizeof(struct vmm_irq_hook));
+  V3_Malloc(struct vmm_irq_hook *, hook, sizeof(struct vmm_irq_hook));
 
   if (!hook) {
     // big problems
@@ -86,7 +86,7 @@ int hook_irq(struct vmm_irq_map * map, uint_t irq,
   hook->prev = NULL;
   
   if (add_irq_hook(map, hook) != 0) {
-    VMMFree(hook);
+    V3_Free(hook);
     return -1;
   }