Changeset 31180 in vbox for trunk/include/VBox
- Timestamp:
- Jul 28, 2010 6:11:10 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64167
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r31098 r31180 169 169 * Only available if VD_CAP_ASYNC_IO is set 170 170 * Check with VDIsAsynchonousIoSupported wether 171 * asynchronous I/O is really supported for this file. 172 */ 171 * asynchronous I/O is really supported for this file. */ 173 172 #define VD_OPEN_FLAGS_ASYNC_IO RT_BIT(4) 173 /** Allow sharing of the image for writable images. May be ignored if the 174 * format backend doesn't support this type of concurrent access. */ 175 #define VD_OPEN_FLAGS_SHAREABLE RT_BIT(5) 174 176 /** Mask of valid flags. */ 175 #define VD_OPEN_FLAGS_MASK (VD_OPEN_FLAGS_NORMAL | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_HONOR_ZEROES | VD_OPEN_FLAGS_HONOR_SAME | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO )177 #define VD_OPEN_FLAGS_MASK (VD_OPEN_FLAGS_NORMAL | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_HONOR_ZEROES | VD_OPEN_FLAGS_HONOR_SAME | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO | VD_OPEN_FLAGS_SHAREABLE) 176 178 /** @}*/ 177 179
Note:
See TracChangeset
for help on using the changeset viewer.