<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.pcntl.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.pcntl-wifcontinued.php',
    1 => 'pcntl_wifcontinued',
    2 => 'Checks whether the child process has continued from a job control stop',
  ),
  'up' => 
  array (
    0 => 'ref.pcntl.php',
    1 => 'PCNTL 関数',
  ),
  'prev' => 
  array (
    0 => 'function.pcntl-wexitstatus.php',
    1 => 'pcntl_wexitstatus',
  ),
  'next' => 
  array (
    0 => 'function.pcntl-wifexited.php',
    1 => 'pcntl_wifexited',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/pcntl/functions/pcntl-wifcontinued.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.pcntl-wifcontinued" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">pcntl_wifcontinued</h1>
  <p class="verinfo">(No version information available, might only be in Git)</p><p class="refpurpose"><span class="refname">pcntl_wifcontinued</span> &mdash; <span class="dc-title">Checks whether the child process has continued from a job control stop</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.pcntl-wifcontinued-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">function</span> <span class="methodname"><strong>pcntl_wifcontinued</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$status</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   Checks whether the child process which caused the return of
   <span class="function"><a href="function.pcntl-waitpid.php" class="function">pcntl_waitpid()</a></span> has continued from a job control stop.
   This function is only useful if the call to
   <span class="function"><a href="function.pcntl-waitpid.php" class="function">pcntl_waitpid()</a></span> was done using the
   <strong><code><a href="pcntl.constants.php#constant.wcontinued">WCONTINUED</a></code></strong> option.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.pcntl-wifcontinued-parameters">
  <h3 class="title">パラメータ</h3>
  <dl>
   
    <dt><code class="parameter">status</code></dt>
    <dd>
     <span class="simpara">パラメータ <code class="parameter">status</code> は、
<span class="function"><a href="function.pcntl-waitpid.php" class="function">pcntl_waitpid()</a></span> が正常にコールされた際に得られます。</span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.pcntl-wifcontinued-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="simpara">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> if the child process which caused the return of
   <span class="function"><a href="function.pcntl-waitpid.php" class="function">pcntl_waitpid()</a></span> has continued from a job control stop,
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> otherwise.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.pcntl-wifcontinued-seealso">
  <h3 class="title">参考</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.pcntl-waitpid.php" class="function" rel="rdfs-seeAlso">pcntl_waitpid()</a> - 待つかフォークした子プロセスのステータスを返す</span></li>
   <li><span class="function"><a href="function.pcntl-wifstopped.php" class="function" rel="rdfs-seeAlso">pcntl_wifstopped()</a> - 子プロセスが現在停止しているかどうかを調べる</span></li>
   <li><span class="function"><a href="function.pcntl-wifexited.php" class="function" rel="rdfs-seeAlso">pcntl_wifexited()</a> - ステータスコードが正常終了を表しているかどうかを調べる</span></li>
   <li><span class="function"><a href="function.pcntl-wifsignaled.php" class="function" rel="rdfs-seeAlso">pcntl_wifsignaled()</a> - ステータスコードがシグナルによる終了を表しているかどうかを調べる</span></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>