Changeset 74839 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Oct 15, 2018 9:29:21 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r74838 r74839 2917 2917 { 2918 2918 uint32_t cNew = ASMAtomicDecU32(&pThis->cIoReqsActive); 2919 AssertMsg(cNew != UINT32_MAX, ("Number of active requests underflowed!\n")); 2919 AssertMsg(cNew != UINT32_MAX, ("Number of active requests underflowed!\n")); RT_NOREF(cNew); 2920 2920 } 2921 2921 else … … 3066 3066 RTCritSectLeave(&pThis->CritSectIoReqRedo); 3067 3067 uint32_t cNew = ASMAtomicDecU32(&pThis->cIoReqsActive); 3068 AssertMsg(cNew != UINT32_MAX, ("Number of active requests underflowed!\n")); 3068 AssertMsg(cNew != UINT32_MAX, ("Number of active requests underflowed!\n")); RT_NOREF(cNew); 3069 3069 pThis->pDrvMediaExPort->pfnIoReqStateChanged(pThis->pDrvMediaExPort, pIoReq, &pIoReq->abAlloc[0], 3070 3070 PDMMEDIAEXIOREQSTATE_SUSPENDED); … … 3712 3712 { 3713 3713 uint32_t cNew = ASMAtomicDecU32(&pThis->cIoReqsActive); 3714 AssertMsg(cNew != UINT32_MAX, ("Number of active requests underflowed!\n")); 3714 AssertMsg(cNew != UINT32_MAX, ("Number of active requests underflowed!\n")); RT_NOREF(cNew); 3715 3715 } 3716 3716
Note:
See TracChangeset
for help on using the changeset viewer.