didou           Thu Mar  4 12:49:47 2004 EDT

  Modified files:              
    /phpdoc/en/reference/dio/functions  dio-close.xml dio-fcntl.xml 
                                        dio-open.xml dio-read.xml 
                                        dio-stat.xml dio-tcsetattr.xml 
                                        dio-write.xml 
  Log:
  added see also, fixed params and some WS
  
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-close.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/dio/functions/dio-close.xml
diff -u phpdoc/en/reference/dio/functions/dio-close.xml:1.3 
phpdoc/en/reference/dio/functions/dio-close.xml:1.4
--- phpdoc/en/reference/dio/functions/dio-close.xml:1.3 Sun Jun 29 12:59:53 2003
+++ phpdoc/en/reference/dio/functions/dio-close.xml     Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-close">
    <refnamediv>
@@ -16,6 +16,9 @@
      The function <function>dio_close</function> closes the
      file descriptor <parameter>fd</parameter>.
     </para>
+    <para>
+     See also <function>dio_open</function>.
+    </para>
    </refsect1>
   </refentry>
 
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-fcntl.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/dio/functions/dio-fcntl.xml
diff -u phpdoc/en/reference/dio/functions/dio-fcntl.xml:1.5 
phpdoc/en/reference/dio/functions/dio-fcntl.xml:1.6
--- phpdoc/en/reference/dio/functions/dio-fcntl.xml:1.5 Sun Jun 29 12:59:53 2003
+++ phpdoc/en/reference/dio/functions/dio-fcntl.xml     Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-fcntl">
    <refnamediv>
@@ -12,7 +12,7 @@
       <type>mixed</type><methodname>dio_fcntl</methodname>
       <methodparam><type>resource</type><parameter>fd</parameter></methodparam>
       <methodparam><type>int</type><parameter>cmd</parameter></methodparam>
-      <methodparam 
choice="opt"><type>mixed</type><parameter>arg</parameter></methodparam>
+      <methodparam 
choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
      </methodsynopsis>
     <para>
      The <function>dio_fcntl</function> function performs the
@@ -21,7 +21,7 @@
      additional arguments <parameter>args</parameter> to be supplied.
     </para>
     <para>
-     <parameter>arg</parameter> is an associative array, when
+     <parameter>args</parameter> is an associative array, when
      <parameter>cmd</parameter> is F_SETLK or F_SETLLW, with the
      following keys:
      <itemizedlist>
@@ -78,14 +78,14 @@
       <listitem>
        <para>
         F_DUPFD - finds the lowest numbered available file descriptor
-        greater or equal than <parameter>arg</parameter> and returns
+        greater or equal than <parameter>args</parameter> and returns
         them.
        </para>
       </listitem>
       <listitem>
        <para>
         F_SETFL - Sets the file descriptors flags to the value specified by
-        <parameter>arg</parameter>, which can be O_APPEND,O_NONBLOCK or 
+        <parameter>args</parameter>, which can be O_APPEND,O_NONBLOCK or 
         O_ASYNC. To use O_ASYNC you will need to use the
         <link linkend="ref.pcntl">PCNTL</link> extension.
        </para>
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-open.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/dio/functions/dio-open.xml
diff -u phpdoc/en/reference/dio/functions/dio-open.xml:1.4 
phpdoc/en/reference/dio/functions/dio-open.xml:1.5
--- phpdoc/en/reference/dio/functions/dio-open.xml:1.4  Sun Jun 29 12:59:53 2003
+++ phpdoc/en/reference/dio/functions/dio-open.xml      Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-open">
    <refnamediv>
@@ -70,6 +70,9 @@
       </listitem>
      </itemizedlist>
     </para>
+    <para>
+     See also: <function>dio_close</function>.
+    </para>
    </refsect1>
   </refentry>
 
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-read.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/dio/functions/dio-read.xml
diff -u phpdoc/en/reference/dio/functions/dio-read.xml:1.3 
phpdoc/en/reference/dio/functions/dio-read.xml:1.4
--- phpdoc/en/reference/dio/functions/dio-read.xml:1.3  Sun Jun 29 12:59:53 2003
+++ phpdoc/en/reference/dio/functions/dio-read.xml      Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-read">
    <refnamediv>
@@ -23,6 +23,9 @@
      not specified, <function>dio_read</function> reads 1K sized block
      and returns them.
     </para>
+    <para>
+     See also: <function>dio_write</function>.
+    </para>
    </refsect1>
   </refentry>
 
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-stat.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/dio/functions/dio-stat.xml
diff -u phpdoc/en/reference/dio/functions/dio-stat.xml:1.2 
phpdoc/en/reference/dio/functions/dio-stat.xml:1.3
--- phpdoc/en/reference/dio/functions/dio-stat.xml:1.2  Wed Apr 17 02:37:33 2002
+++ phpdoc/en/reference/dio/functions/dio-stat.xml      Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-stat">
    <refnamediv>
@@ -38,7 +38,7 @@
       <listitem><para>"mtime" - time of last modification</para></listitem>
       <listitem><para>"ctime" - time of last change</para></listitem>
      </itemizedlist>
-     On error <function>dio_stat</function> returns NULL.
+     On error <function>dio_stat</function> returns &null;.
     </para>
    </refsect1>
   </refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-tcsetattr.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/dio/functions/dio-tcsetattr.xml
diff -u phpdoc/en/reference/dio/functions/dio-tcsetattr.xml:1.6 
phpdoc/en/reference/dio/functions/dio-tcsetattr.xml:1.7
--- phpdoc/en/reference/dio/functions/dio-tcsetattr.xml:1.6     Thu Dec 18 12:43:56 
2003
+++ phpdoc/en/reference/dio/functions/dio-tcsetattr.xml Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-tcsetattr">
    <refnamediv>
@@ -11,13 +11,13 @@
    <refsect1>
     <title>Description</title>
      <methodsynopsis>
-      <type></type><methodname>dio_tcsetattr</methodname>
+      <type>void</type><methodname>dio_tcsetattr</methodname>
       <methodparam><type>resource</type><parameter>fd</parameter></methodparam>
       <methodparam><type>array</type><parameter>options</parameter></methodparam>
      </methodsynopsis>
     <para>
      The function <function>dio_tcsetattr</function> sets
-    the terminal attributes and baud rate of the open 
+     the terminal attributes and baud rate of the open 
      <parameter>resource</parameter>. The currently available options are 
      <itemizedlist>
       <listitem>
http://cvs.php.net/diff.php/phpdoc/en/reference/dio/functions/dio-write.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/dio/functions/dio-write.xml
diff -u phpdoc/en/reference/dio/functions/dio-write.xml:1.2 
phpdoc/en/reference/dio/functions/dio-write.xml:1.3
--- phpdoc/en/reference/dio/functions/dio-write.xml:1.2 Wed Apr 17 02:37:33 2002
+++ phpdoc/en/reference/dio/functions/dio-write.xml     Thu Mar  4 12:49:47 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <!-- splitted from ./en/functions/dio.xml, last change in rev 1.1 -->
   <refentry id="function.dio-write">
    <refnamediv>
@@ -25,6 +25,9 @@
      file. <function>dio_write</function> returns the number of bytes
      written to <parameter>fd</parameter>.
     </para>
+    <para>
+     See also <function>dio_read</function>.
+    </para>
    </refsect1>
   </refentry>
 

Reply via email to