12064 Convert iovec(9S) to mandoc
1 IOVEC(9S) Data Structures for Drivers IOVEC(9S) 2 3 4 5 NAME 6 iovec - data storage structure for I/O using uio 7 8 SYNOPSIS 9 #include <sys/uio.h> 10 11 12 INTERFACE LEVEL 13 Architecture independent level 1 (DDI/DKI). 14 15 DESCRIPTION 16 An iovec structure describes a data storage area for transfer in a 17 uio(9S) structure. Conceptually, it can be thought of as a base 18 address and length specification. 19 20 STRUCTURE MEMBERS 21 caddr_t iov_base; /* base address of the data storage area */ 22 /* represented by the iovec structure */ 23 int iov_len; /* size of the data storage area in bytes */ 24 25 26 SEE ALSO 27 uio(9S) 28 29 30 Writing Device Drivers 31 32 33 34 April 11, 1991 IOVEC(9S) --- EOF ---