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.


Context-based output infrastructure (V3_Print, etc) and modifications to use it
[palacios.git] / palacios / src / palacios / vmx_exits.c
index b3f5ad9..38fe326 100644 (file)
@@ -37,7 +37,7 @@ static int enable_exit(struct guest_info * core, v3_exit_type_t exit_type) {
            break;
 
        default:
-           PrintError("Unhandled Exit Type (%d)\n", exit_type);
+           PrintError(core->vm_info, core, "Unhandled Exit Type (%d)\n", exit_type);
            return -1;
     }
 
@@ -58,7 +58,7 @@ static int disable_exit(struct guest_info * core, v3_exit_type_t exit_type) {
            break;
 
        default:
-           PrintError("Unhandled Exit Type (%d)\n", exit_type);
+           PrintError(core->vm_info, core, "Unhandled Exit Type (%d)\n", exit_type);
            return -1;
     }