Print this page
12065 Convert aio_req(9S) to mandoc
   1 '\" te
   2 .\"  Copyright 1989 AT&T
   3 .\"  Copyright (c) 1997, Sun Microsystems, Inc.  All Rights Reserved
   4 .\" 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.
   5 .\" 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.
   6 .\" 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]
   7 .TH AIO_REQ 9S "Mar 28, 1997"
   8 .SH NAME
   9 aio_req \- asynchronous I/O request structure
  10 .SH SYNOPSIS
  11 .LP
  12 .nf
  13 #include <sys/uio.h>
  14 #include <sys/aio_req.h>
  15 #include <sys/ddi.h>
  16 #include <sys/sunddi.h>
  17 .fi
  18 
  19 .SH INTERFACE LEVEL
  20 .sp
  21 .LP








  22 Solaris DDI specific (Solaris DDI)
  23 .SH DESCRIPTION
  24 .sp
  25 .LP
  26 An  \fBaio_req\fR structure describes an asynchronous \fBI/O \fRrequest.
  27 .SH STRUCTURE MEMBERS
  28 .sp
  29 .in +2
  30 .nf
  31 struct uio*aio_uio;   /* uio structure describing the I/O request */
  32 .fi
  33 .in -2
  34 
  35 .sp
  36 .LP
  37 The \fBaio_uio\fR member is a pointer to a \fBuio\fR(9S) structure, describing
  38 the \fBI/O \fRtransfer request.
  39 .SH SEE ALSO
  40 .sp
  41 .LP
  42 \fBaread\fR(9E), \fBawrite\fR(9E), \fBaphysio\fR(9F), \fBuio\fR(9S)




   1 .\"  Copyright 2018, Joyent, Inc.
   2 .\"  Copyright 1989 AT&T
   3 .\"  Copyright (c) 1997, Sun Microsystems, Inc.  All Rights Reserved
   4 .\" The contents of this file are subject to the terms of the
   5 .\" Common Development and Distribution License (the "License").
   6 .\" You may not use this file except in compliance with the License.
   7 .\"
   8 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 .\" or http://www.opensolaris.org/os/licensing.
  10 .\" See the License for the specific language governing permissions
  11 .\" and limitations under the License.
  12 .\"
  13 .\" When distributing Covered Code, include this CDDL HEADER in each
  14 .\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 .\" If applicable, add the following below this CDDL HEADER, with the
  16 .\" fields enclosed by brackets "[]" replaced with your own identifying
  17 .\" information: Portions Copyright [yyyy] [name of copyright owner]
  18 .Dd July 9, 2018
  19 .Dt AIO_REQ 9S
  20 .Os
  21 .Sh NAME
  22 .Nm aio_req
  23 .Nd asynchronous I/O request structure
  24 .Sh SYNOPSIS
  25 .In sys/uio.h
  26 .In sys/aio_req.h
  27 .In sys/ddi.h
  28 .In sys/sunddi.h
  29 .Sh INTERFACE LEVEL
  30 Solaris DDI specific (Solaris DDI)
  31 .Sh DESCRIPTION
  32 An
  33 .Vt aio_req
  34 structure describes an asynchronous
  35 .Sy I/O
  36 request.
  37 .Sh STRUCTURE MEMBERS
  38 .Bd -literal -offset 2n
  39 struct uio *aio_uio;   /* uio structure describing the I/O request */
  40 .Ed
  41 .Pp
  42 The
  43 .Fa aio_uio
  44 member is a pointer to a
  45 .Xr uio 9S
  46 structure, describing
  47 the
  48 .Sy I/O
  49 transfer request.
  50 .Sh SEE ALSO
  51 .Xr aread 9E ,
  52 .Xr awrite 9E ,
  53 .Xr aphysio 9F ,
  54 .Xr uio 9S