Changeset 36633 in vbox for trunk/include/VBox
- Timestamp:
- Apr 8, 2011 9:43:41 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71097
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd-plugin.h
r33567 r36633 455 455 456 456 /** 457 * Return whether asynchronous I/O operations are supported for this image.458 *459 * @returns true if asynchronous I/O is supported460 * false otherwise.461 * @param pBackendData Opaque state data for this image.462 */463 DECLR3CALLBACKMEMBER(bool, pfnIsAsyncIOSupported, (void *pBackendData));464 465 /**466 457 * Start an asynchronous read request. 467 458 * -
trunk/include/VBox/vd.h
r36573 r36633 167 167 #define VD_OPEN_FLAGS_INFO RT_BIT(3) 168 168 /** Open image for asynchronous access. Only available if VD_CAP_ASYNC_IO is 169 * set. Check with VDIsAsynchonousIoSupported whether asynchronous I/O is170 * really supported for this file.*/169 * set. VDOpen fails with VERR_NOT_SUPPORTED if this operation is not supported for 170 * this kind of image. */ 171 171 #define VD_OPEN_FLAGS_ASYNC_IO RT_BIT(4) 172 172 /** Allow sharing of the image for writable images. May be ignored if the … … 2610 2610 2611 2611 /** 2612 * Query if asynchronous operations are supported for this disk.2613 *2614 * @return VBox status code.2615 * @return VERR_VD_IMAGE_NOT_FOUND if image with specified number was not opened.2616 * @param pDisk Pointer to the HDD container.2617 * @param nImage Image number, counts from 0. 0 is always base image of container.2618 * @param pfAIOSupported Where to store if async IO is supported.2619 */2620 VBOXDDU_DECL(int) VDImageIsAsyncIOSupported(PVBOXHDD pDisk, unsigned nImage, bool *pfAIOSupported);2621 2622 2623 /**2624 2612 * Start an asynchronous read request. 2625 2613 *
Note:
See TracChangeset
for help on using the changeset viewer.