Changeset 52710 in vbox for trunk/src/VBox/Storage/testcase
- Timestamp:
- Sep 11, 2014 8:25:53 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 96049
- Location:
- trunk/src/VBox/Storage/testcase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/testcase/VDIoBackend.cpp
r46247 r52710 282 282 } 283 283 284 DECLHIDDEN(int) VDIoBackendDumpToFile(PVDIOSTORAGE pIoStorage, const char *pszPath) 285 { 286 int rc = VINF_SUCCESS; 287 288 if (pIoStorage->fMemory) 289 rc = VDMemDiskWriteToFile(pIoStorage->u.pMemDisk, pszPath); 290 else 291 rc = VERR_NOT_IMPLEMENTED; 292 293 return rc; 294 } 295 -
trunk/src/VBox/Storage/testcase/VDIoBackend.h
r46247 r52710 72 72 int VDIoBackendStorageGetSize(PVDIOSTORAGE pIoStorage, uint64_t *pcbSize); 73 73 74 DECLHIDDEN(int) VDIoBackendDumpToFile(PVDIOSTORAGE pIoStorage, const char *pszPath); 75 74 76 /** 75 77 * Enqueues a new I/O request. -
trunk/src/VBox/Storage/testcase/tstVDIo.cpp
r52640 r52710 1758 1758 { 1759 1759 RTPrintf("Dumping memory file %s to %s, this might take some time\n", pcszFile, pcszPathToDump); 1760 //rc = VDMemDiskWriteToFile(pIt->pIo, pcszPathToDump);1760 rc = VDIoBackendDumpToFile(pIt->pIoStorage, pcszPathToDump); 1761 1761 rc = VERR_NOT_IMPLEMENTED; 1762 1762 }
Note:
See TracChangeset
for help on using the changeset viewer.