Mutex::destroy

(PECL pthreads < 3.0.0)

Mutex::destroy���ٻ�����

Warning

pthreads v3 ���Ѿ��� Mutex ���Ƴ���

˵��

final public static Mutex::destroy ( int $mutex ) : bool

������ʹ��ij���Ѿ������Ļ��������֮�󣬳���Ա��Ҫ��ʽ����������

����

mutex

ͨ�����ú��� Mutex::create() ���صĻ���������� ������ Mutex::destroy() ����֮���κ��̶߳��޷��ٸ���������������ˡ�

����ֵ

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

����

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

<?php
/** ������ʹ�� new �ؼ��֣���Ϊ���������� PHP ���� **/
$mutex Mutex::create();
/** ���Ѿ�����������������������ַ **/
var_dump($mutex);
/** ��Ҫ���������㴴���Ļ����� **/
Mutex::destroy($mutex);
?>

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

int(40096976)