<html>
<head>
<link rel="stylesheet" href="josh.css">
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF">
<div id="pcntl_exec">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_exec </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">bool pcntl_exec(string
          path[, array args[, array envs]])</p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>exec() で定義されるように、現在のプロセス空間で指定されたプログラムを実行します。
</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_fork">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_fork </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">int pcntl_fork(void)
        </p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>Unix の fork( ) システムコールと同様に、現在実行中のプロセスをフォークします。
</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_signal">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_signal </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">bool pcntl_signal(long
          signo, mixed handle) </p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>システムシグナルハンドラーを PHP 関数に割り当てます。</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_waitpid">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_waitpid </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">int pcntl_waitpid(long
          pid, long status, long options) </p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>waitpid( ) システムコールで定義されるように、待機するか、またはフォークされた子プロセスのステータスを返します。
</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_wexitstatus">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_wexitstatus </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">int pcntl_wexitstatus(long
          status) </p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>子プロセスの終了のステータスコードを返します。</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_wifexited">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_wifexited </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">bool pcntl_wifexited(long
          status)</p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>子プロセスのステータスコードが正常終了を表している場合は true を返します。</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_wifsignaled">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_wifsignaled </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">bool pcntl_wifsignaled(long
          status)</p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>子プロセスのステータスコードがシグナルによって終了したプロセスを表している場合は true を返します。
</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_wifstopped">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_wifstopped </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">bool pcntl_wifstopped(long
          status) </p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>子プロセスのステータスコードが停止したプロセスを表している場合は true を返します (waitpid() で WUNTRACED が使用されている必要があります)。
</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_wstopsig">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_wstopsig </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">int pcntl_wstopsig(long
          status)</p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>指定されたプロセスを停止させたシグナルの番号を返します。
</p></td>
    </tr>
  </table>
</div>
<div id="pcntl_wtermsig">
  <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
    <tr>
      <td class="name" valign="top">pcntl_wtermsig </td>
      <td class="compatibility" nowrap valign="top">PHP <span class="emphasis"> 4.1.0 </span></td>
    </tr>
    <tr>
      <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
    </tr>
    <tr>
      <td valign="top" nowrap class="usage"><p class="literal">int pcntl_wtermsig(long
          status)</p></td>
      <td valign="top" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="2" class="clearseparation"> </td>
    </tr>
    <tr>
      <td valign="top" colspan="2" class="description"><p>指定されたプロセスを終了させたシグナルの番号を返します。</p></td>
    </tr>
  </table>
</div>
</body>
</html>
