Cond::destroy

(PECL pthreads < 3.0.0)

Cond::destroy������������

Warning

pthreads v3 ���Ѿ��� Cond ���Ƴ���

˵��

final public static Cond::destroy ( int $condition ) : bool

��������Ҫ����������������ʱ������Ա������ʽ���������� ������ Cond::destroy() ����ʱ�����뱣֤�����߳�û�д��ڵȴ�����������������״̬��ͨ�����ú��� Cond::wait() ������������״̬����

����

condition

ͨ������ Cond::create() ������õ������������

����ֵ

����ֵ����ʾ�����Ƿ�ɹ���

����

Example #1 ���������Ĵ���������

<?php
/** ������ʹ�� new �ؼ��֣���Ϊ Cond ���� PHP ���� **/
$cond Cond::create();
/** ����������������߳���������ʹ�ô��������� **/
var_dump($cond);
/** ��Զ��Ҫ���������㴴������������ **/
Cond::destroy($cond);
?>

�������̻������

int(4540682)