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.


removed GeekOS specific debug message
Jack Lange [Tue, 23 Jun 2009 16:12:15 +0000 (11:12 -0500)]
palacios/src/palacios/svm_halt.c

index 7c1abf5..1a81bb8 100644 (file)
  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
  */
 
-
-
-
-
-
 #include <palacios/svm_halt.h>
 #include <palacios/vmm_intr.h>
 
@@ -54,7 +49,7 @@ int v3_handle_svm_halt(struct guest_info * info)
        ullong_t yield_stop = 0;
        uint32_t gap = 0;
        
-       PrintDebug("GeekOS Yield\n");
+       PrintDebug("CPU Yield\n");
        
        rdtscll(yield_start);
        V3_Yield();
@@ -67,7 +62,7 @@ int v3_handle_svm_halt(struct guest_info * info)
            v3_raise_irq(info, 0);
        }
        
-       PrintDebug("GeekOS Yield Done (%d cycles)\n", gap);
+       PrintDebug("CPU Yield Done (%d cycles)\n", gap);
        
        info->rip+=1;
     }