Changeset 25279 in vbox for trunk/src/VBox/Main/ApplianceImpl.cpp
- Timestamp:
- Dec 9, 2009 5:50:26 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55821
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r25149 r25279 1037 1037 1038 1038 /* Unlock the appliance for the reading thread */ 1039 appLock. unlock();1039 appLock.release(); 1040 1040 /* Wait until the reading is done, but report the progress back to the 1041 1041 caller */ … … 1044 1044 1045 1045 /* Again lock the appliance for the next steps */ 1046 appLock. lock();1046 appLock.acquire(); 1047 1047 } 1048 1048 catch(HRESULT aRC) … … 2104 2104 2105 2105 /* Unlock the appliance for the fs import thread */ 2106 appLock. unlock();2106 appLock.release(); 2107 2107 /* Wait until the import is done, but report the progress back to the 2108 2108 caller */ … … 2111 2111 2112 2112 /* Again lock the appliance for the next steps */ 2113 appLock. lock();2113 appLock.acquire(); 2114 2114 } 2115 2115 catch(HRESULT aRC) … … 3126 3126 3127 3127 /* Unlock the appliance for the writing thread */ 3128 appLock. unlock();3128 appLock.release(); 3129 3129 /* Wait until the writing is done, but report the progress back to the 3130 3130 caller */ … … 3133 3133 3134 3134 /* Again lock the appliance for the next steps */ 3135 appLock. lock();3135 appLock.acquire(); 3136 3136 3137 3137 vrc = RTPathExists(strTmpOvf.c_str()); /* Paranoid check */
Note:
See TracChangeset
for help on using the changeset viewer.