xref: /illumos-gate/usr/src/man/man9s/iovec.9s (revision defc4c8acfa01dba1ef3c13ca0cafccfcede51c0)
te
Copyright (c) 2000, Sun Microsystems, Inc. All Rights Reserved.
Copyright 1989 AT&T
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
IOVEC 9S "Apr 11, 1991"
NAME
iovec - data storage structure for I/O using uio
SYNOPSIS

#include <sys/uio.h>
INTERFACE LEVEL

Architecture independent level 1 (DDI/DKI).

DESCRIPTION

An iovec structure describes a data storage area for transfer in a uio(9S) structure. Conceptually, it can be thought of as a base address and length specification.

STRUCTURE MEMBERS
caddr_t iov_base; /* base address of the data storage area */
 /* represented by the iovec structure */
int iov_len; /* size of the data storage area in bytes */
SEE ALSO

uio(9S)

Writing Device Drivers