Changeset 79254 in vbox for trunk/src/VBox
- Timestamp:
- Jun 20, 2019 2:27:10 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestFileImpl.cpp
r79253 r79254 297 297 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 298 298 299 /* mData.mOffCurrent gets updated on i_readData[At]() / i_writeData[At]() file notification callbacks. 300 * So no need to take another roundtrip into the guest asking for the current offset (using tell). */ 299 /** @todo r=bird: Why do you have both a offset and a tell() function? 300 * After a ReadAt or WriteAt with a non-current offset, the tell() result will 301 * differ from this value, because mOffCurrent is only ever incremented with 302 * data read or written. */ 301 303 *aOffset = mData.mOffCurrent; 302 304
Note:
See TracChangeset
for help on using the changeset viewer.