るりまサーチ

最速Rubyリファレンスマニュアル検索!
401件ヒット [401-401件を表示] (0.017秒)
トップページ > クエリ:thread[x] > クエリ:current[x]

別のキーワード

  1. drb thread
  2. thread exit
  3. thread join
  4. thread kill
  5. thread abort_on_exception

ライブラリ

クラス

モジュール

検索結果

<< < ... 3 4 5 >>

Monitor#mon_exit -> () (12.0)

モニターのロックを解放します。

...ドが一つ実行を再開します。

@raise ThreadError ロックを持っていないスレッドが呼びだした場合に発生します

//emlist[例][ruby]{
require 'monitor'
mon = Monitor.new
mon.enter
mon.enter
mon.exit
mon.exit
mon.exit # => current thread not owner (ThreadError)
//}...
<< < ... 3 4 5 >>