File: refentry.example.3.xml

package info (click to toggle)
libxml2 2.6.16-7sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 39,520 kB
  • ctags: 17,752
  • sloc: xml: 145,516; ansic: 140,533; python: 10,324; sh: 8,559; makefile: 1,535; php: 366; perl: 67
file content (16 lines) | stat: -rw-r--r-- 1,217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<refentry id="iovec"><refmeta><refentrytitle>iovec</refentrytitle><manvolnum>9S</manvolnum></refmeta><refnamediv><refname>iovec</refname><refpurpose>data storage structure for I/O using uio</refpurpose></refnamediv><refsynopsisdiv><synopsis>
#include &lt;sys/uio.h&gt;</synopsis></refsynopsisdiv><refsect1><title>Interface Level</title><para>
Architecture independent level 1 (DDI/DKI).
</para></refsect1><refsect1><title>Description</title><para>
An <structname>iovec</structname> structure describes a data
storage area for transfer in a
<citerefentry><refentrytitle>uio</refentrytitle><manvolnum>9S</manvolnum></citerefentry>
structure. Conceptually,
it may be thought of as a base address and length specification.
</para></refsect1><refsect1><title>Structure Members</title><programlisting>
     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 */
</programlisting><para>…</para></refsect1></refentry>