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.


remove debugging output from yield
Jack Lange [Fri, 7 Aug 2009 22:16:32 +0000 (17:16 -0500)]
palacios/src/palacios/vmm.c

index 82073f0..1203427 100644 (file)
@@ -117,9 +117,10 @@ void v3_yield_cond(struct guest_info * info) {
 
     if (cur_cycle > (info->yield_start_cycle + info->yield_cycle_period)) {
 
-       PrintDebug("Conditional Yield (cur_cyle=%p, start_cycle=%p, period=%p)\n", 
-                  (void *)cur_cycle, (void *)info->yield_start_cycle, (void *)info->yield_cycle_period);
-
+       /*
+         PrintDebug("Conditional Yield (cur_cyle=%p, start_cycle=%p, period=%p)\n", 
+         (void *)cur_cycle, (void *)info->yield_start_cycle, (void *)info->yield_cycle_period);
+       */
        V3_Yield();
        rdtscll(info->yield_start_cycle);
     }