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.


VM reset capability
[palacios.git] / palacios / src / palacios / vmm_halt.c
index 741b2d9..57aee0f 100644 (file)
@@ -73,8 +73,8 @@ int v3_handle_halt(struct guest_info * info)
            // participate in any barrier that might be raised
            v3_wait_at_barrier(info);
 
-           // stop if the VM is being halted
-           if (info->core_run_state == CORE_STOPPED) { 
+           // stop if the VM is being halted or core is being reset
+           if (info->core_run_state == CORE_STOPPED || info->core_run_state == CORE_RESETTING) { 
                break;
            }