Changeset 59305 in vbox for trunk/include/VBox
- Timestamp:
- Jan 10, 2016 8:38:50 PM (9 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r59299 r59305 1467 1467 #define VERR_PDM_MEDIAEX_IOBUF_OVERFLOW (-2894) 1468 1468 /** There is not enough data to satisfy the request. */ 1469 #define VERR_PDM_MEDIAEX_IOBUF_UNDER FLOW(-2895)1469 #define VERR_PDM_MEDIAEX_IOBUF_UNDERRUN (-2895) 1470 1470 /** The I/O request ID is already existing. */ 1471 1471 #define VERR_PDM_MEDIAEX_IOREQID_CONFLICT (-2896) -
trunk/include/VBox/vmm/pdmstorageifs.h
r59291 r59305 571 571 typedef uint64_t PDMMEDIAEXIOREQID; 572 572 573 /** 574 * I/O Request Type. 575 */ 576 typedef enum PDMMEDIAEXIOREQTYPE 577 { 578 /** Invalid tpe. */ 579 PDMMEDIAEXIOREQTYPE_INVALID = 0, 580 /** Flush request. */ 581 PDMMEDIAEXIOREQTYPE_FLUSH, 582 /** Write request. */ 583 PDMMEDIAEXIOREQTYPE_WRITE, 584 /** Read request. */ 585 PDMMEDIAEXIOREQTYPE_READ, 586 /** Discard request. */ 587 PDMMEDIAEXIOREQTYPE_DISCARD 588 } PDMMEDIAEXIOREQTYPE; 589 573 590 /** @name I/O request specific flags 574 591 * @{ */ … … 623 640 * 624 641 * @returns VBox status code. 625 * @retval VERR_PDM_MEDIAEX_IOBUF_UNDER FLOWif there is not enough data to copy from the buffer.642 * @retval VERR_PDM_MEDIAEX_IOBUF_UNDERRUN if there is not enough data to copy from the buffer. 626 643 * @param pInterface Pointer to the interface structure containing the called function pointer. 627 644 * @param hIoReq The I/O request handle.
Note:
See TracChangeset
for help on using the changeset viewer.