Changeset 19346 in vbox
- Timestamp:
- May 5, 2009 12:39:14 AM (16 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r19206 r19346 589 589 RuntimeR3_SOURCES.freebsd += \ 590 590 r3/freebsd/fileaio-freebsd.cpp 591 RuntimeR3_SOURCES.darwin += \ 592 r3/posix/fileaio-posix.cpp 591 593 endif 592 594 -
trunk/src/VBox/Runtime/r3/linux/fileaio-linux.cpp
r19185 r19346 502 502 } 503 503 504 RTDECL(int) RTFileAioCtxAssociateWithFile(RTFILEAIOCT ShAioCtx, RTFILE hFile)504 RTDECL(int) RTFileAioCtxAssociateWithFile(RTFILEAIOCTX hAioCtx, RTFILE hFile) 505 505 { 506 506 /* Nothing to do. */ -
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r16647 r19346 143 143 fOpenMode |= O_SYNC; 144 144 #endif 145 #if defined(O_DIRECT) && defined(RT_OS_LINUX) 146 /* O_DIRECT is mandatory to get async I/O working on Linux. */ 147 if (fOpen & RTFILE_O_ASYNC_IO) 148 fOpenMode |= O_DIRECT; 149 #endif 145 150 146 151 /* create/truncate file */
Note:
See TracChangeset
for help on using the changeset viewer.