Changeset 46584 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 17, 2013 12:17:36 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r46523 r46584 2719 2719 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 2720 2720 2721 if (mMachineState != MachineState_Running) /** @todo Live Migration: ??? */ 2721 if ( mMachineState != MachineState_Running 2722 && mMachineState != MachineState_Teleporting 2723 && mMachineState != MachineState_LiveSnapshotting) 2722 2724 return setInvalidMachineStateError(); 2723 2725 … … 5049 5051 || mMachineState == MachineState_Teleporting 5050 5052 || mMachineState == MachineState_LiveSnapshotting 5053 || mMachineState == MachineState_Paused 5051 5054 ) 5052 5055 ) … … 5082 5085 } 5083 5086 } 5087 else 5088 rc = setInvalidMachineStateError(); 5084 5089 5085 5090 /* notify console callbacks on success */
Note:
See TracChangeset
for help on using the changeset viewer.