Changeset 66576 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- Apr 14, 2017 1:42:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r62477 r66576 1645 1645 1646 1646 1647 RTDECL(int) RTVfsIsRangeInUse(RTVFS hVfs, uint64_t off, size_t cb, 1648 bool *pfUsed) 1647 RTDECL(int) RTVfsIsRangeInUse(RTVFS hVfs, uint64_t off, size_t cb, bool *pfUsed) 1649 1648 { 1650 1649 RTVFSINTERNAL *pThis = hVfs; … … 1652 1651 AssertReturn(pThis->uMagic == RTVFS_MAGIC, VERR_INVALID_HANDLE); 1653 1652 1653 if (!pThis->pOps->pfnIsRangeInUse) 1654 return VERR_NOT_SUPPORTED; 1654 1655 RTVfsLockAcquireWrite(pThis->Base.hLock); 1655 1656 int rc = pThis->pOps->pfnIsRangeInUse(pThis->Base.pvThis, off, cb, pfUsed);
Note:
See TracChangeset
for help on using the changeset viewer.