Sophie

Sophie

distrib > Mandriva > 2008.1 > i586 > by-pkgid > 703d980c580707c382b4e43e25965bc5 > files > 8749

php-manual-pt_BR-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>pcntl_wait</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="Manual do PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="Process Control Functions"
HREF="ref.pcntl.html"><LINK
REL="PREVIOUS"
TITLE="pcntl_signal"
HREF="function.pcntl-signal.html"><LINK
REL="NEXT"
TITLE="pcntl_waitpid"
HREF="function.pcntl-waitpid.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Manual do PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.pcntl-signal.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.pcntl-waitpid.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.pcntl-wait"
></A
>pcntl_wait</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN165214"
></A
><P
>    (PHP 5)</P
>pcntl_wait&nbsp;--&nbsp;Waits on or returns the status of a forked child</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN165217"
></A
><H2
>Descrição</H2
>int <B
CLASS="methodname"
>pcntl_wait</B
> ( int &#38;status [, int options] )<BR
></BR
><P
>&#13;   The wait function suspends execution of the current process until a
   child has exited, or until a signal is delivered whose action is to
   terminate the current process or to call a signal handling function.  If a
   child has already exited by the time of the call (a so-called "zombie"
   process), the function returns immediately.  Any system resources used by
   the child are freed.  Please see your system's wait(2) man page for
   specific details as to how wait works on your system.
  </P
><DIV
CLASS="note"
><BLOCKQUOTE
CLASS="note"
><P
><B
>Nota: </B
>
    This function is equivalent to calling <A
HREF="function.pcntl-waitpid.html"
><B
CLASS="function"
>pcntl_waitpid()</B
></A
>
    with a <TT
CLASS="literal"
>-1</TT
> <CODE
CLASS="parameter"
>pid</CODE
> and no
    <CODE
CLASS="parameter"
>options</CODE
>.
   </P
></BLOCKQUOTE
></DIV
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN165235"
></A
><H2
>Parâmetros</H2
><P
>&#13;   <P
></P
><DIV
CLASS="variablelist"
><DL
><DT
><CODE
CLASS="parameter"
>status</CODE
></DT
><DD
><P
>&#13;       <B
CLASS="function"
>pcntl_wait()</B
> will store status information
       in the <CODE
CLASS="parameter"
>status</CODE
> parameter which can be
       evaluated using the following functions:
       <A
HREF="function.pcntl-wifexited.html"
><B
CLASS="function"
>pcntl_wifexited()</B
></A
>,
       <A
HREF="function.pcntl-wifstopped.html"
><B
CLASS="function"
>pcntl_wifstopped()</B
></A
>,
       <A
HREF="function.pcntl-wifsignaled.html"
><B
CLASS="function"
>pcntl_wifsignaled()</B
></A
>,
       <A
HREF="function.pcntl-wexitstatus.html"
><B
CLASS="function"
>pcntl_wexitstatus()</B
></A
>,
       <A
HREF="function.pcntl-wtermsig.html"
><B
CLASS="function"
>pcntl_wtermsig()</B
></A
> and
       <A
HREF="function.pcntl-wstopsig.html"
><B
CLASS="function"
>pcntl_wstopsig()</B
></A
>.
      </P
></DD
><DT
><CODE
CLASS="parameter"
>options</CODE
></DT
><DD
><P
>&#13;       If wait3 is available on your system (mostly BSD-style systems), you can
       provide the optional <CODE
CLASS="parameter"
>options</CODE
> parameter.  If this
       parameter is not provided, wait will be used for the system call.  If
       wait3 is not available, providing a value for <CODE
CLASS="parameter"
>options
       </CODE
> will have no effect. The value of <CODE
CLASS="parameter"
>options
       </CODE
> is the value of zero or more of the following two constants
       <TT
CLASS="literal"
>OR</TT
>'ed together:
       <DIV
CLASS="table"
><A
NAME="AEN165261"
></A
><P
><B
>Tabela 1. Possible values for <CODE
CLASS="parameter"
>options</CODE
></B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><COL><COL><TBODY
><TR
><TD
><TT
CLASS="literal"
>WNOHANG</TT
></TD
><TD
>&#13;            Return immediately if no child has exited.
           </TD
></TR
><TR
><TD
><TT
CLASS="literal"
>WUNTRACED</TT
></TD
><TD
>&#13;            Return for children which are stopped, and whose status has
            not been reported.
           </TD
></TR
></TBODY
></TABLE
></DIV
>
      </P
></DD
></DL
></DIV
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN165274"
></A
><H2
>Valores de retornado</H2
><P
>&#13;   <B
CLASS="function"
>pcntl_wait()</B
> returns the process ID of the
   child which exited, -1 on error or zero if WNOHANG was provided as an
   option (on wait3-available systems) and no child was available.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN165278"
></A
><H2
>Veja também</H2
><P
>&#13;   <P
></P
><TABLE
BORDER="0"
><TBODY
><TR
><TD
><A
HREF="function.pcntl-fork.html"
><B
CLASS="function"
>pcntl_fork()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-signal.html"
><B
CLASS="function"
>pcntl_signal()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-wifexited.html"
><B
CLASS="function"
>pcntl_wifexited()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-wifstopped.html"
><B
CLASS="function"
>pcntl_wifstopped()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-wifsignaled.html"
><B
CLASS="function"
>pcntl_wifsignaled()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-wexitstatus.html"
><B
CLASS="function"
>pcntl_wexitstatus()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-wtermsig.html"
><B
CLASS="function"
>pcntl_wtermsig()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-wstopsig.html"
><B
CLASS="function"
>pcntl_wstopsig()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.pcntl-waitpid.html"
><B
CLASS="function"
>pcntl_waitpid()</B
></A
></TD
></TR
></TBODY
></TABLE
><P
></P
>
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.pcntl-signal.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Principal</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.pcntl-waitpid.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>pcntl_signal</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.pcntl.html"
ACCESSKEY="U"
>Acima</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>pcntl_waitpid</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>