Changeset 63689 in vbox
- Timestamp:
- Sep 2, 2016 12:00:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110449
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r63216 r63689 500 500 VBoxDD_DEFS += VBOX_WITH_DRV_DISK_INTEGRITY 501 501 VBoxDD_SOURCES += \ 502 Storage/DrvDiskIntegrity.cpp 502 Storage/DrvDiskIntegrity.cpp \ 503 Storage/DrvRamDisk.cpp 503 504 VBoxDD_LIBS += \ 504 505 $(PATH_STAGE_LIB)/StorageDbgLib$(VBOX_SUFF_LIB) -
trunk/src/VBox/Devices/Storage/DrvDiskIntegrity.cpp
r63562 r63689 689 689 * @param pvUser Opaque user data. 690 690 */ 691 static intdrvdiskIntIoReqExpiredCheck(RTTHREAD pThread, void *pvUser)691 static DECLCALLBACK(int) drvdiskIntIoReqExpiredCheck(RTTHREAD pThread, void *pvUser) 692 692 { 693 693 PDRVDISKINTEGRITY pThis = (PDRVDISKINTEGRITY)pvUser; 694 695 RT_NOREF(pThread); 694 696 695 697 while (pThis->fRunning) … … 1304 1306 /* -=-=-=-=- driver interface -=-=-=-=- */ 1305 1307 1306 static intdrvdiskintTreeDestroy(PAVLRFOFFNODECORE pNode, void *pvUser)1308 static DECLCALLBACK(int) drvdiskintTreeDestroy(PAVLRFOFFNODECORE pNode, void *pvUser) 1307 1309 { 1308 1310 PDRVDISKSEGMENT pSeg = (PDRVDISKSEGMENT)pNode; 1311 1312 RT_NOREF(pvUser); 1309 1313 1310 1314 RTMemFree(pSeg->pbSeg); -
trunk/src/VBox/Devices/build/VBoxDD.cpp
r62885 r63689 363 363 if (RT_FAILURE(rc)) 364 364 return rc; 365 366 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRamDisk); 367 if (RT_FAILURE(rc)) 368 return rc; 365 369 #endif 366 370 #ifdef VBOX_WITH_PCI_PASSTHROUGH_IMPL -
trunk/src/VBox/Devices/build/VBoxDD.h
r62586 r63689 152 152 #ifdef VBOX_WITH_DRV_DISK_INTEGRITY 153 153 extern const PDMDRVREG g_DrvDiskIntegrity; 154 extern const PDMDRVREG g_DrvRamDisk; 154 155 #endif 155 156 #ifdef VBOX_WITH_PCI_PASSTHROUGH_IMPL
Note:
See TracChangeset
for help on using the changeset viewer.