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 software interrupt injection to core interrupt code
[palacios.git] / palacios / src / extensions / ext_syscall_hijack.c
index 59ea961..0bd0b08 100644 (file)
@@ -25,6 +25,7 @@
 #include <palacios/vmm_string.h>
 #include <palacios/vmm_shadow_paging.h>
 #include <palacios/vmm_extensions.h>
+#include <palacios/vmm_intr.h>
 
 #include <interfaces/syscall_hijack.h>
 #include <interfaces/sw_intr.h>
@@ -66,7 +67,7 @@ static int v3_syscall_handler (struct guest_info * core, uint8_t vector, void *
         }
         hook = syscall_hooks[syscall_nr];
 #else
-        return v3_signal_swintr(core, vector);
+        return v3_raise_swintr(core, vector);
 #endif
     }