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.


Cleanup based on cppcheck pass (GEARS)
Peter Dinda [Wed, 1 Jul 2015 22:36:11 +0000 (17:36 -0500)]
palacios/src/gears/ext_syscall_hijack.c

index a910414..8e21769 100644 (file)
@@ -103,7 +103,7 @@ static void print_syscall (uint8_t is64, struct guest_info * core) {
 int v3_syscall_handler (struct guest_info * core, uint8_t vector, void * priv_data) {
  
     uint_t syscall_nr = (uint_t) core->vm_regs.rax;
-    int err = 0, ret = 0;
+    int err = 0;
 
     struct v3_syscall_hook * hook = syscall_hooks[syscall_nr];