最速Rubyリファレンスマニュアル検索!
すべて(10)
2.3.0(1)
2.4.0(1)
2.5.0(1)
2.6.0(1)
2.7.0(1)
3.0(1)
3.1(1)
3.2(1)
3.3(1)
3.4(1)
10件ヒット
[1-10件を表示]
(0.006秒)
トップページ
>
:
begin
>
クラス:Thread::Mutex
別のキーワード
_builtin begin
range begin
matchdata begin
arithmeticsequence begin
ライブラリ
ビルトイン
(10)
検索結果
先頭1件
Thread
::
Mutex
#
unlock -> self
Thread
::
Mutex
#
unlock -> self
(7.0)
2.3.0
2.4.0
2.5.0
2.6.0
2.7.0
3.0
3.1
3.2
3.3
3.4
インスタンスメソッド
mutex のロックを解放します。mutex のロック待ちになっていたスレッドの実行は再開されます。
...
。mutex のロック待ちになっていたスレッドの実行は再開されます。
@return self を返します。
例:
m = Mutex.new
begin
m.lock
# critical part
ensure
m.unlock
end
Mutex はロックしたスレッド以外からロックを開放することは出来ま
...