Changeset 21500 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Jul 10, 2009 8:40:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r21499 r21500 212 212 iErr = 0; 213 213 /* Switch direct I/O on now if requested */ 214 # if defined(RT_OS_SOLARIS) && !defined(IN_GUEST) 214 215 if (fOpen & RTFILE_O_NO_CACHE) 215 # if defined(RT_OS_SOLARIS) && !defined(IN_GUEST)216 216 iErr = directio(fh, DIRECTIO_ON); 217 217 # elif defined(RT_OS_DARWIN) 218 if (fOpen & RTFILE_O_NO_CACHE) 218 219 iErr = fcntl(fh, F_NOCACHE); 219 220 # endif
Note:
See TracChangeset
for help on using the changeset viewer.