Descriptions completed & lots of typo fixes

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@126390 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Moriyoshi Koizumi 2003-05-09 13:14:06 +00:00
parent 2a473fff90
commit e75064846e

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id='function.proc-get-status'>
<refnamediv>
<refname>proc_get_status</refname>
@ -27,17 +27,17 @@
<tbody>
<row>
<entry>command</entry>
<entry>string</entry>
<entry><type>string</type></entry>
<entry></entry>
</row>
<row>
<entry>pid</entry>
<entry>int</entry>
<entry><type>int</type></entry>
<entry>process id</entry>
</row>
<row>
<entry>running</entry>
<entry>bool</entry>
<entry><type>bool</type></entry>
<entry>
&true; if the process is still running, &false; if it has
terminated
@ -45,31 +45,43 @@
</row>
<row>
<entry>signaled</entry>
<entry>bool</entry>
<entry>TODO</entry>
<entry><type>bool</type></entry>
<entry>
&true; if the child process has been terminated by
an uncaught signal. Always set to &false; on Windows.
</entry>
</row>
<row>
<entry>stopper</entry>
<entry>bool</entry>
<entry>TODO</entry>
<entry>stopped</entry>
<entry><type>bool</type></entry>
<entry>
&true; if the child process has been stopped by a
signal. Always set to &false; on Windows.
</entry>
</row>
<row>
<entry>exitcode</entry>
<entry>int</entry>
<entry><type>int</type></entry>
<entry>
the exit code returned by the process (which is only
meaningfull if running is &false;
meaningful if <literal>running</literal> is &false;)
</entry>
</row>
<row>
<entry>termsig</entry>
<entry>int</entry>
<entry>TODO</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;)
</entry>
</row>
<row>
<entry>stopsig</entry>
<entry>int</entry>
<entry>TODO</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;)
</entry>
</row>
</tbody>
</tgroup>