Cond::destroyDestroy a Condition Warning
The Cond class has been removed in pthreads v3. Description
final
public
static
boolean
Cond::destroy
(
long
$condition
)Destroying Condition Variable handles must be carried out explicitly by the programmer when they are finished with the Condition Variable. No Threads should be blocking on a call to Cond::wait when the call to Cond::destroy takes place. Parameters
Return ValuesA boolean indication of success. Examples
Example #1 Condition Creation and Destruction
<?php The above example will output: int(4540682) |