Changeset 80910 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Sep 20, 2019 12:12:38 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/fs/FsPerf.cpp
r80909 r80910 5711 5711 /* Sync it all. */ 5712 5712 # ifdef RT_OS_WINDOWS 5713 CHECK_WINAPI_CALL(FlushViewOfFile(pbMapping, cbContent) == TRUE); 5713 //CHECK_WINAPI_CALL(FlushViewOfFile(pbMapping, cbContent) == TRUE); 5714 SetLastError(0); 5715 if (FlushViewOfFile(pbMapping, cbContent) != TRUE) 5716 RTTestIFailed("line %u, i=%u: FlushViewOfFile(%p, %#zx) failed: %u / %#x", __LINE__, i, 5717 GetLastError(), RTNtLastStatusValue()); 5714 5718 # else 5715 5719 RTTESTI_CHECK(msync(pbMapping, cbContent, MS_SYNC) == 0);
Note:
See TracChangeset
for help on using the changeset viewer.