2011-10-10 15:08:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- $Revision$ -->
|
|
|
|
|
|
|
|
<appendix xml:id="eio.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
|
|
&reftitle.constants;
|
|
|
|
&extension.constants;
|
2012-06-24 10:10:24 +00:00
|
|
|
|
2011-10-10 15:08:10 +00:00
|
|
|
<para>Request priority constants:
|
|
|
|
<variablelist>
|
|
|
|
<!--{{{ EIO_PRI_* -->
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-pri-min">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_PRI_MIN</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2012-06-24 10:10:24 +00:00
|
|
|
Request minimal prioriry
|
2011-10-10 15:08:10 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-pri-default">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_PRI_DEFAULT</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Request default prioriry
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-pri-max">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_PRI_MAX</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Request maximal prioriry
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<!--}}}-->
|
2012-06-24 10:10:24 +00:00
|
|
|
</variablelist>
|
|
|
|
</para>
|
2011-10-10 15:08:10 +00:00
|
|
|
|
2012-06-24 10:10:24 +00:00
|
|
|
<para><function>eio_seek</function> <parameter>whence</parameter> argument:
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry xml:id="constant.eio-seek-set">
|
|
|
|
<term>
|
|
|
|
<constant>EIO_SEEK_SET</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
The offset is set to specified number of bytes(<parameter>offset</parameter>).
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.eio-seek-cur">
|
|
|
|
<term>
|
|
|
|
<constant>EIO_SEEK_CUR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
The offset is set to its current location plus <parameter>offset</parameter> bytes.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.eio-seek-end">
|
|
|
|
<term>
|
|
|
|
<constant>EIO_SEEK_END</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
The offset is set to the size of the file plus <parameter>offset</parameter> bytes.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2011-10-10 15:08:10 +00:00
|
|
|
</variablelist>
|
2011-10-11 12:14:06 +00:00
|
|
|
</para>
|
2012-06-24 10:10:24 +00:00
|
|
|
|
2011-10-11 12:14:06 +00:00
|
|
|
<para>
|
2011-10-10 15:08:10 +00:00
|
|
|
Flags used with <function>eio_readdir</function>:
|
|
|
|
<variablelist>
|
|
|
|
|
2011-10-11 12:14:06 +00:00
|
|
|
<!--{{{ EIO_READDIR_* -->
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-readdir-dents">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_READDIR_DENTS</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
<function>eio_readdir</function> flag. If specified, the result argument of the callback
|
|
|
|
becomes an array with the following keys:
|
2011-10-11 12:14:06 +00:00
|
|
|
<literal>'names'</literal> - array of directory names
|
|
|
|
<literal>'dents'</literal> - array of <literal>struct eio_dirent</literal>-like
|
|
|
|
arrays having the following keys each:
|
|
|
|
<literal>'name'</literal> - the directory name;
|
|
|
|
<literal>'type'</literal> - one of <emphasis>EIO_DT_*</emphasis>
|
|
|
|
constants;
|
|
|
|
<literal>'inode'</literal> - the inode number, if available, otherwise
|
|
|
|
unspecified;
|
2011-10-10 15:08:10 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-readdir-dirs-first">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_READDIR_DIRS_FIRST</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
When this flag is specified, the names will be returned in an order
|
2011-10-11 12:14:06 +00:00
|
|
|
where likely directories come first, in optimal stat order.
|
2011-10-10 15:08:10 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-readdir-stat-order">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_READDIR_STAT_ORDER</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
When this flag is specified, then the names will be returned in an order
|
|
|
|
suitable for <literal>stat</literal>'ing each one. When planning to
|
|
|
|
<function>stat</function> all files in the given directory, the
|
|
|
|
returned order will likely be
|
|
|
|
fastest.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-readdir-found-unknown">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_READDIR_FOUND_UNKNOWN</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<!--}}}-->
|
|
|
|
|
|
|
|
<!--{{{ EIO_DT_* -->
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-unknown">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_UNKNOWN</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2011-10-11 12:14:06 +00:00
|
|
|
Unknown node type(very common). Further <function>stat</function> needed.
|
2011-10-10 15:08:10 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-fifo">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_FIFO</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
FIFO node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-chr">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_CHR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-mpc">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_MPC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Multiplexed char device (v7+coherent) node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-dir">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_DIR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2011-10-11 12:14:06 +00:00
|
|
|
Directory node type
|
2011-10-10 15:08:10 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-nam">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_NAM</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Xenix special named file node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-blk">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_BLK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-mpb">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_MPB</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Multiplexed block device (v7+coherent)
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-reg">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_REG</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-nwk">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_NWK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-cmp">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_CMP</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
HP-UX network special node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-lnk">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_LNK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Link node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-sock">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_SOCK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Socket node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-door">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_DOOR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Solaris door node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-wht">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_WHT</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Node type
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-dt-max">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_DT_MAX</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Highest node type value
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<!--}}}-->
|
|
|
|
|
|
|
|
</variablelist>
|
2011-10-11 12:14:06 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-10-10 15:08:10 +00:00
|
|
|
Access modes for <function>eio_open</function> <parameter>flags</parameter>
|
|
|
|
argument:
|
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<!--{{{ EIO_O_*-->
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-rdonly">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_RDONLY</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-wronly">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_WRONLY</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-rdwr">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_RDWR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-nonblock">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_NONBLOCK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-append">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_APPEND</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-creat">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_CREAT</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-trunc">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_TRUNC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-excl">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_EXCL</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-o-fsync">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_O_FSYNC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<!--}}}-->
|
|
|
|
|
|
|
|
</variablelist>
|
2011-10-11 12:14:06 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-10-10 15:08:10 +00:00
|
|
|
<parameter>mode</parameter> argument flags for <function>eio_open</function>:
|
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<!--{{{ EIO_S_I*-->
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-irusr">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IRUSR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-iwusr">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IWUSR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ixusr">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IXUSR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-irgrp">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IRGRP</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-iwgrp">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IWGRP</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ixgrp">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IXGRP</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-iroth">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IROTH</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-iwoth">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IWOTH</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ixoth">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IXOTH</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ifreg">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IFREG</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ifchr">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IFCHR</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ifblk">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IFBLK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ififo">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IFIFO</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-s-ifsock">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_S_IFSOCK</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<!--}}}-->
|
|
|
|
|
|
|
|
|
|
|
|
</variablelist>
|
2011-10-11 12:14:06 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-10-10 15:08:10 +00:00
|
|
|
<function>eio_sync_file_range</function> flags:
|
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<!--{{{ EIO_SYNC_FILE_*-->
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-sync-file-range-wait-before">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_SYNC_FILE_RANGE_WAIT_BEFORE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-sync-file-range-write">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_SYNC_FILE_RANGE_WRITE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-sync-file-range-wait-after">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_SYNC_FILE_RANGE_WAIT_AFTER</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<!--}}}-->
|
|
|
|
|
|
|
|
|
|
|
|
</variablelist>
|
2011-10-11 12:14:06 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-10-10 15:08:10 +00:00
|
|
|
<function>eio_fallocate</function> flags:
|
|
|
|
<variablelist>
|
|
|
|
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.eio-falloc-fl-keep-size">
|
2011-10-10 15:08:10 +00:00
|
|
|
<term>
|
|
|
|
<constant>EIO_FALLOC_FL_KEEP_SIZE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<note xmlns="http://docbook.org/ns/docbook">
|
|
|
|
<para>
|
|
|
|
<emphasis>EIO_S_I*</emphasis> constants have the same meaning as their
|
|
|
|
<emphasis>S_I*</emphasis> POSIX counterparts.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
|
2011-10-11 12:14:06 +00:00
|
|
|
<note xmlns="http://docbook.org/ns/docbook">
|
|
|
|
<para>
|
|
|
|
<emphasis>EIO_SYNC_FILE_*</emphasis> constants have the same meaning as their
|
|
|
|
<emphasis>SYNC_FILE_**</emphasis> counterparts.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
|
|
|
|
<note xmlns="http://docbook.org/ns/docbook">
|
|
|
|
<para>
|
|
|
|
<emphasis>EIO_O_*</emphasis> constants have the same meaning as their
|
|
|
|
<emphasis>O_*</emphasis> POSIX counterparts.
|
|
|
|
</para>
|
|
|
|
</note>
|
2011-10-10 15:08:10 +00:00
|
|
|
</appendix>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
2011-10-11 12:14:06 +00:00
|
|
|
vim: et tw=78 syn=sgml
|
2011-10-10 15:08:10 +00:00
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|