PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Mutex::unlock - Release Mutex | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Mutex::unlock

(PECL pthreads < 3.0.0)

Mutex::unlockRelease Mutex

警告

The Mutex class has been removed in pthreads v3.

説明

final public static boolean Mutex::unlock ( long $mutex [, boolean $destroy ] )

Attempts to unlock the Mutex for the caller, optionally destroying the Mutex handle. The calling thread should own the Mutex at the time of the call.

パラメータ

mutex

A handle returned by a previous call to Mutex::create().

destroy

When true pthreads will destroy the Mutex after a successful unlock.

返り値

A boolean indication of success.

例1 Mutex Locking and Unlocking

<?php
/** You cannot use the "new" keyword, a Mutex is not a PHP object **/
$mutex Mutex::create();
/** You can now lock the mutex in any context **/
var_dump(Mutex::lock($mutex));
/** It is invalid to attempt to destroy a locked Mutex **/
var_dump(Mutex::unlock($mutex));
/** Always destroy mutex you have created **/
Mutex::destroy($mutex);
?>

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

bool(true)
bool(true)


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Mutex::unlock - Release Mutex」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Mutex::unlock - Release Mutex」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: