bjori Tue Nov 14 12:11:02 2006 UTC
Modified files:
/phpdoc/en/reference/sem/functions msg-receive.xml msg-send.xml
/phpdoc/en/reference/sem constants.xml
Log:
New constants
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/sem/functions/msg-receive.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/sem/functions/msg-receive.xml
diff -u phpdoc/en/reference/sem/functions/msg-receive.xml:1.7
phpdoc/en/reference/sem/functions/msg-receive.xml:1.8
--- phpdoc/en/reference/sem/functions/msg-receive.xml:1.7 Wed Nov 10
08:30:41 2004
+++ phpdoc/en/reference/sem/functions/msg-receive.xml Tue Nov 14 12:11:02 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.msg-receive">
<refnamediv>
<refname>msg_receive</refname>
@@ -70,7 +70,7 @@
<entry>If there are no messages of the
<parameter>desiredmsgtype</parameter>, return immediately and do not
wait. The function will fail and return an integer value
- corresponding to ENOMSG.
+ corresponding to <constant>MSG_ENOMSG</constant>.
</entry>
</row>
<row>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/sem/functions/msg-send.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/sem/functions/msg-send.xml
diff -u phpdoc/en/reference/sem/functions/msg-send.xml:1.6
phpdoc/en/reference/sem/functions/msg-send.xml:1.7
--- phpdoc/en/reference/sem/functions/msg-send.xml:1.6 Wed Apr 20 14:05:08 2005
+++ phpdoc/en/reference/sem/functions/msg-send.xml Tue Nov 14 12:11:02 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.msg-send">
<refnamediv>
<refname>msg_send</refname>
@@ -31,7 +31,7 @@
optional <parameter>blocking</parameter> parameter to &false;, in which
case <function>msg_send</function> will immediately return &false; if the
message is too big for the queue, and set the optional
- <parameter>errorcode</parameter> to EAGAIN, indicating that you should
+ <parameter>errorcode</parameter> to <constant>MSG_EAGAIN</constant>,
indicating that you should
try to send your message again a little later on.
</para>
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/sem/constants.xml?r1=1.1&r2=1.2&diff_format=u
Index: phpdoc/en/reference/sem/constants.xml
diff -u phpdoc/en/reference/sem/constants.xml:1.1
phpdoc/en/reference/sem/constants.xml:1.2
--- phpdoc/en/reference/sem/constants.xml:1.1 Sun Apr 25 11:04:33 2004
+++ phpdoc/en/reference/sem/constants.xml Tue Nov 14 12:11:02 2006
@@ -1,30 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<section id="sem.constants">
&reftitle.constants;
&extension.constants;
<para>
<table>
<title>System V message constants</title>
- <tgroup cols="2">
+ <tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Type</entry>
+ <entry>Changelog</entry>
</row>
</thead>
<tbody>
<row>
<entry>MSG_IPC_NOWAIT</entry>
<entry><type>integer</type></entry>
+ <entry />
</row>
<row>
- <entry>MSG_NOERROR</entry>
- <entry><type>integer</type></entry>
+ <entry>MSG_EAGAIN</entry>
+ <entry><type>integer</type></entry>
+ <entry>As of 5.2.0</entry>
+ </row>
+ <row>
+ <entry>MSG_ENOMSG</entry>
+ <entry><type>integer</type></entry>
+ <entry>As of 5.2.0</entry>
+ </row>
+ <row>
+ <entry>MSG_NOERROR</entry>
+ <entry><type>integer</type></entry>
+ <entry />
</row>
<row>
<entry>MSG_EXCEPT</entry>
<entry><type>integer</type></entry>
+ <entry />
</row>
</tbody>
</tgroup>