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.


Added initialization of yield_start_cycle to start_time()
Patrick G. Bridges [Fri, 1 Oct 2010 18:32:27 +0000 (12:32 -0600)]
palacios/src/palacios/vmm_time.c

index 874f6ea..7814acb 100644 (file)
@@ -61,6 +61,7 @@ int v3_start_time(struct guest_info * info) {
     PrintDebug("Starting initial guest time as %llu\n", t);
     info->time_state.last_update = t;
     info->time_state.pause_time = t;
+    info->yield_start_cycle = t;
     return 0;
 }