Changeset 80035 in vbox
- Timestamp:
- Jul 29, 2019 7:32:39 AM (5 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
-
Makefile.kmk (modified) (6 diffs)
-
common/ioqueue/ioqueuebase.cpp (modified) (1 diff)
-
include/internal/ioqueue.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r80028 r80035 451 451 common/fs/RTFsCmdLs.cpp \ 452 452 common/ioqueue/ioqueuebase.cpp \ 453 common/ioqueue/ioqueue-aiofile-provider.cpp \454 453 common/ioqueue/ioqueue-stdfile-provider.cpp \ 455 454 common/ldr/ldr.cpp \ … … 826 825 RuntimeR3_SOURCES.win = \ 827 826 common/dbg/dbgmoddbghelp.cpp \ 827 common/ioqueue/ioqueue-aiofile-provider.cpp \ 828 828 generic/cdrom-generic.cpp \ 829 829 generic/RTDirExists-generic.cpp \ … … 921 921 922 922 RuntimeR3_SOURCES.linux = \ 923 common/ioqueue/ioqueue-aiofile-provider.cpp \ 923 924 generic/cdrom-generic.cpp \ 924 925 generic/RTCrStoreCreateSnapshotById-generic.cpp \ … … 1108 1109 1109 1110 RuntimeR3_SOURCES.darwin = \ 1111 common/ioqueue/ioqueue-aiofile-provider.cpp \ 1110 1112 darwin/RTErrConvertFromDarwin.cpp \ 1111 1113 darwin/RTErrConvertFromDarwinCOM.cpp \ … … 1198 1200 ## @todo Make BSD sched, implement RTMP*. 1199 1201 RuntimeR3_SOURCES.freebsd = \ 1202 common/ioqueue/ioqueue-aiofile-provider.cpp \ 1200 1203 generic/cdrom-generic.cpp \ 1201 1204 generic/RTCrStoreCreateSnapshotById-generic.cpp \ … … 1365 1368 1366 1369 RuntimeR3_SOURCES.solaris = \ 1370 common/ioqueue/ioqueue-aiofile-provider.cpp \ 1367 1371 generic/cdrom-generic.cpp \ 1368 1372 generic/RTCrStoreCreateSnapshotById-generic.cpp \ -
trunk/src/VBox/Runtime/common/ioqueue/ioqueuebase.cpp
r79983 r80035 89 89 &g_RTIoQueueLnxIoURingProv, 90 90 #endif 91 #ifndef RT_OS_OS2 91 92 &g_RTIoQueueAioFileProv, 93 #endif 92 94 &g_RTIoQueueStdFileProv 93 95 }; -
trunk/src/VBox/Runtime/include/internal/ioqueue.h
r79949 r80035 37 37 /** The standard file I/O queue provider using synchronous file access. */ 38 38 extern RTDATADECL(RTIOQUEUEPROVVTABLE const) g_RTIoQueueStdFileProv; 39 #ifndef RT_OS_OS2 39 40 /** The file I/O queue provider using the RTFileAio API. */ 40 41 extern RTDATADECL(RTIOQUEUEPROVVTABLE const) g_RTIoQueueAioFileProv; 42 #endif 41 43 #if defined(RT_OS_LINUX) 42 44 /** The file I/O queue provider using the recently added io_uring interface when
Note:
See TracChangeset
for help on using the changeset viewer.

