Changeset 63689 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Sep 2, 2016 12:00:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110449
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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);
Note:
See TracChangeset
for help on using the changeset viewer.