array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'function.pcntl-unshare.php', 1 => 'pcntl_unshare', 2 => 'Dissociates parts of the process execution context', ), 'up' => array ( 0 => 'ref.pcntl.php', 1 => 'Süreç Denetim İşlevleri', ), 'prev' => array ( 0 => 'function.pcntl-strerror.php', 1 => 'pcntl_strerror', ), 'next' => array ( 0 => 'function.pcntl-wait.php', 1 => 'pcntl_wait', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pcntl/functions/pcntl-unshare.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

pcntl_unshare

(PHP 7 >= 7.4.0, PHP 8)

pcntl_unshareDissociates parts of the process execution context

Açıklama

pcntl_unshare(int $flags): bool

pcntl_unshare() allows a process to disassociate parts of its execution context that are currently being shared with other processes. The main use of pcntl_unshare() is to allow a process to control its shared execution context without creating a new process.

Bağımsız Değişkenler

flags

The flags parameter is a bitmask that specifies which parts of the execution context should be unshared. This parameter is specified by ORing together zero or more of the CLONE_* constants:

Dönen Değerler

Returns 0 on success, -1 otherwise. On failure it sets an error code, that can be retrieved with pcntl_get_last_error().

Ayrıca Bakınız