Changeset 104626 in vbox
- Timestamp:
- May 14, 2024 12:06:12 PM (7 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/vfs.h
r100997 r104626 1233 1233 * RTVFS_VALIDATE_UTF8_XXX. 1234 1234 * @param poffError Where to return the error offset. Optional. 1235 * Not implemented yet! 1235 1236 */ 1236 1237 RTDECL(int) RTVfsIoStrmValidateUtf8Encoding(RTVFSIOSTREAM hVfsIos, uint32_t fFlags, PRTFOFF poffError); -
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r101108 r104626 2029 2029 rc = RTThreadSleep(cMillies); 2030 2030 while ( rc == VERR_INTERRUPTED 2031 && !fIntr2032 2031 && RTTimeMilliTS() - uMsStart < cMillies); 2033 2032 if (rc == VERR_INTERRUPTED) … … 3876 3875 rc = RTThreadSleep(cMillies); 3877 3876 while ( rc == VERR_INTERRUPTED 3878 && !fIntr3879 3877 && RTTimeMilliTS() - uMsStart < cMillies); 3880 3878 if (rc == VERR_INTERRUPTED) -
trunk/src/VBox/Runtime/common/vfs/vfsiosmisc.cpp
r101109 r104626 118 118 } 119 119 120 if (RT_FAILURE(rc)) 121 break; 122 120 123 if (off < cbUsed) 121 124 { … … 130 133 if (poffError && RT_FAILURE(rc)) 131 134 { 135 /** @todo r=andy Implement this? */ 132 136 } 133 137 -
trunk/src/VBox/Runtime/common/vfs/vfsreadahead.cpp
r100908 r104626 715 715 rc = RTThreadUserWait(hThreadSelf, RT_MS_1MIN); 716 716 if (RT_SUCCESS(rc)) 717 rc =RTThreadUserReset(hThreadSelf);717 RTThreadUserReset(hThreadSelf); 718 718 } 719 719 -
trunk/src/VBox/Runtime/common/vfs/vfsstdfile.cpp
r100908 r104626 318 318 rc = RTThreadSleep(cMillies); 319 319 while ( rc == VERR_INTERRUPTED 320 && !fIntr321 320 && RTTimeMilliTS() - uMsStart < cMillies); 322 321 if (rc == VERR_INTERRUPTED)
Note:
See TracChangeset
for help on using the changeset viewer.