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 / vmm_mwait.c
index 3196ae2..78e78c5 100644 (file)
@@ -30,7 +30,7 @@
 //
 int v3_handle_mwait(struct guest_info * info) 
 {
-    PrintDebug("Raising undefined opcode due to mwait instruction\n");
+    PrintDebug(info->vm_info, info, "Raising undefined opcode due to mwait instruction\n");
 
     v3_raise_exception(info, UD_EXCEPTION );
 
@@ -42,7 +42,7 @@ int v3_handle_mwait(struct guest_info * info)
 //
 int v3_handle_monitor(struct guest_info * info) 
 {
-    PrintDebug("Raising undefined opcode due to monitor instruction\n");
+    PrintDebug(info->vm_info, info, "Raising undefined opcode due to monitor instruction\n");
 
     v3_raise_exception(info, UD_EXCEPTION );