iovec
IO buffer structure
Declaration
Source position: ostypes.inc line 426
Type
iovec = record
  iov\_base : pointer;
  iov\_len : size\_t;
end
Description
iovec is used in fpreadv for IO to multiple buffers to describe a buffer location.
See also
| Name | Description | 
|---|---|
| fpreadv | Vector read: Read into multiple buffers | 
| fpwritev | Vector write: Write from multiple buffers to a file descriptor | 
| size_t | Size specification type. |