©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PECL pthreads >= 2.0.0)
Cond::wait — 等待
$condition
, long $mutex
[, long $timeout
] )进入条件变量等待状态。通过 timeout 参数可以设置等待超时时间。
condition
通过调用 Cond::create() 函数获得的条件变量句柄
mutex
通过调用 Mutex::create() 函数获得的互斥量,并且已经被调用者线程加锁。
timeout
等待超时,以毫秒为单位。
布尔值,表示操作是否成功。
Example #1 等待条件变量
<?php
$mutex = Mutex :: create ( true );
$cond = Cond :: create ();
var_dump ( Cond :: wait ( $cond , $mutex ));
Cond :: destroy ( $cond );
Mutex :: unlock ( $mutex );
Mutex :: destroy ( $mutex );
?>
以上例程会输出:
int(49685473)