- Timestamp:
- May 25, 2023 1:16:18 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmnetifs.h
r99962 r99964 54 54 /** 55 55 * PDM scatter/gather buffer. 56 * 57 * @note This is a little bit similar to the RTSGBUF structure in IPRT. 58 * 56 * 57 * @note This is a little bit similar to the RTSGBUF structure in IPRT. 58 * 59 59 * It is possible to reuse the PDMSCATTERGATHER::aSegs member here in a 60 60 * RTSGBUF, but must always remember to specify … … 62 62 * call, since the segments here will (normally) describe the full 63 63 * PDMSCATTERGATHER::cbAvailable length. 64 * 64 * 65 65 * @todo Promote this to VBox/types.h, VBox/vmm/pdmcommon.h or some such place. 66 66 */ … … 84 84 /** Variable sized array of segments. 85 85 * This describes the max allocated buffer length, consumers must limit 86 * operations to PDMSCATTERGATHER::cbUser. */ 86 * operations to PDMSCATTERGATHER::cbUser. */ 87 87 RTSGSEG aSegs[1]; 88 88 } PDMSCATTERGATHER;
Note:
See TracChangeset
for help on using the changeset viewer.