Changeset 24354 in vbox for trunk/src/VBox
- Timestamp:
- Nov 4, 2009 7:24:09 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54377
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r24348 r24354 6440 6440 if ( mData->mMachineState == MachineState_Saved 6441 6441 || mData->mMachineState == MachineState_Restoring 6442 // when deleting a snapshot we may or may not have a saved state in the current state, 6443 // so let's not assert here please 6444 || ( (mData->mMachineState == MachineState_DeletingSnapshot) 6445 && (!mSSData->mStateFilePath.isEmpty()) 6446 ) 6442 6447 ) 6443 6448 { -
trunk/src/VBox/Main/SnapshotImpl.cpp
r24345 r24354 2111 2111 Assert(pAttach->medium()); 2112 2112 ComObjPtr<Medium> pHD = pAttach->medium(); 2113 AutoReadLock mlock(pHD);2113 // do not lock, prepareDiscared() has a write lock which will hang otherwise 2114 2114 2115 2115 Medium::MergeChain *chain = NULL; … … 2292 2292 } 2293 2293 2294 if (FAILED(rc)) 2295 { 2296 /* saveSettings() below needs a VirtualBox write lock and we need to 2297 * leave this object's lock to do this to follow the {parent-child} 2298 * locking rule. This is the last chance to do that while we are 2299 * still in a protective state which allows us to temporarily leave 2300 * the lock */ 2301 alock.unlock(); 2302 AutoWriteLock vboxLock(mParent); 2303 alock.lock(); 2304 2305 /* preserve existing error info */ 2294 alock.unlock(); 2295 2296 // whether we were successful or not, we need to set the machine 2297 // state and save the machine settings; 2298 { 2299 // preserve existing error info so that the result can 2300 // be properly reported to the progress object below 2306 2301 ErrorInfoKeeper eik; 2307 2302 2308 /* restore the machine state */ 2303 // restore the machine state that was saved when the 2304 // task was started 2309 2305 setMachineState(aTask.machineStateBackup); 2310 2306 updateMachineStateOnClient(); 2311 2307 2312 2308 if (settingsChanged) 2309 { 2310 // saveSettings needs VirtualBox write lock in addition to our own 2311 // (parent -> child locking order!) 2312 AutoWriteLock vboxLock(mParent); 2313 alock.lock(); 2314 2313 2315 saveSettings(SaveS_InformCallbacksAnyway); 2314 2315 /* set the result (this will try to fetch current error info on failure) */ 2316 aTask.pProgress->notifyComplete(rc); 2317 } 2316 } 2317 } 2318 2319 // report the result (this will try to fetch current error info on failure) 2320 aTask.pProgress->notifyComplete(rc); 2318 2321 2319 2322 if (SUCCEEDED(rc))
Note:
See TracChangeset
for help on using the changeset viewer.