Fullstops

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@201589 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2005-11-29 14:55:34 +00:00
parent 2d3571bbb0
commit 7adde1356f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.8 $ -->
<!-- $Revision: 1.9 $ -->
<refentry id='function.proc-get-status'>
<refnamediv>
<refname>proc_get_status</refname>
@ -52,7 +52,7 @@
<entry>command</entry>
<entry><type>string</type></entry>
<entry>
The command string that was passed to <function>proc_open</function>
The command string that was passed to <function>proc_open</function>.
</entry>
</row>
<row>
@ -65,7 +65,7 @@
<entry><type>bool</type></entry>
<entry>
&true; if the process is still running, &false; if it has
terminated
terminated.
</entry>
</row>
<row>
@ -88,24 +88,24 @@
<entry>exitcode</entry>
<entry><type>int</type></entry>
<entry>
the exit code returned by the process (which is only
meaningful if <literal>running</literal> is &false;)
The exit code returned by the process (which is only
meaningful if <literal>running</literal> is &false;).
</entry>
</row>
<row>
<entry>termsig</entry>
<entry><type>int</type></entry>
<entry>
the number of the signal that caused the child process to terminate
its execution (only meaningful if <literal>signaled</literal> is &true;)
The number of the signal that caused the child process to terminate
its execution (only meaningful if <literal>signaled</literal> is &true;).
</entry>
</row>
<row>
<entry>stopsig</entry>
<entry><type>int</type></entry>
<entry>
the number of the signal that caused the child process to stop its
execution (only meaningful if <literal>stopped</literal> is &true;)
The number of the signal that caused the child process to stop its
execution (only meaningful if <literal>stopped</literal> is &true;).
</entry>
</row>
</tbody>