401件ヒット
[401-401件を表示]
(0.017秒)
ライブラリ
- ビルトイン (240)
-
irb
/ context (12) - monitor (18)
- thwait (54)
クラス
-
IRB
:: Context (12) - Monitor (18)
- Thread (221)
- ThreadsWait (54)
モジュール
- Kernel (7)
キーワード
-
$ SAFE (7) -
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 3
. 0 . 0 (5) - ThreadGroup (12)
- [] (12)
- alive? (12)
-
all
_ waits (18) - drb (12)
- empty? (6)
- exit (12)
- fetch (8)
- finished? (6)
- group (12)
- inspect (12)
- irb (12)
- join (6)
-
join
_ nowait (6) - key? (12)
- keys (12)
-
mon
_ exit (6) - new (6)
- priority (12)
- priority= (12)
-
rb
_ thread _ current (12) -
report
_ on _ exception (9) -
report
_ on _ exception= (9) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
safe
_ level (7) -
set
_ trace _ func (12) - status (12)
- stop? (12)
-
thread
_ variable? (12) -
thread
_ variable _ get (12) -
thread
_ variable _ set (12) - threads (6)
-
to
_ s (8)
検索結果
-
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)
//}...