Threaded::unlock

(PECL pthreads < 3.0.0)

Threaded::unlockSynchronization

警告

This method has been removed in pthreads v3. The Threaded::synchronized() method should now be used.

説明

public Threaded::unlock ( void ) : bool

Unlock the referenced objects storage for the calling context

パラメータ

この関数にはパラメータはありません。

返り値

A boolean indication of success

例1 Locking the property table of a threaded object

<?php
class My extends Thread {
    public function 
run() {
        
var_dump($this->lock());
        
/** nobody can read or write **/
        
var_dump($this->unlock());
        
/** reading / writing resumed for all other contexts */
    
}
}
$my = new My();
$my->start();
?>

上の例の出力は以下となります。

bool(true)
bool(true)