Changeset 23009 in vbox for trunk/include/VBox
- Timestamp:
- Sep 14, 2009 3:05:45 PM (15 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/types.h
r22975 r23009 156 156 /** The VM is being powered on */ 157 157 VMSTATE_POWERING_ON, 158 /** The VM is being resumed. */ 159 VMSTATE_RESUMING, 158 160 /** The VM is runnning. */ 159 161 VMSTATE_RUNNING, … … 187 189 /** The VM is switched off, awaiting destruction. */ 188 190 VMSTATE_OFF, 191 /** Live save: Waiting for cancellation and transition to VMSTATE_OFF. */ 192 VMSTATE_OFF_LS, 189 193 /** The VM is powered off because of a fatal error. */ 190 194 VMSTATE_FATAL_ERROR, -
trunk/include/VBox/vm.h
r22893 r23009 678 678 /** The state of the VM. 679 679 * This field is read only to everyone except the VM and EM. */ 680 VMSTATE 680 VMSTATE volatile enmVMState; 681 681 /** Forced action flags. 682 682 * See the VM_FF_* \#defines. Updated atomically.
Note:
See TracChangeset
for help on using the changeset viewer.