210件ヒット
[201-210件を表示]
(0.113秒)
別のキーワード
ライブラリ
- ビルトイン (210)
キーワード
- [] (12)
-
abort
_ on _ exception (12) -
add
_ trace _ func (12) - backtrace (12)
-
backtrace
_ locations (24) - fetch (8)
- inspect (12)
- key? (12)
- name= (10)
- priority (12)
- priority= (12)
-
report
_ on _ exception (9) - run (12)
-
safe
_ level (7) -
set
_ trace _ func (12) - stop? (12)
-
to
_ s (8) - wakeup (12)
検索結果
-
Thread
# wakeup -> self (3114.0) -
停止状態(stop)のスレッドを実行可能状態(run)にします。
...を実行可能状態(run)にします。
@raise ThreadError 死んでいるスレッドに対して実行すると発生します。
//emlist[例][ruby]{
c = Thread.new { Thread.stop; puts "hey!" }
sleep 0.1 while c.status!='sleep'
c.wakeup
c.join
# => "hey!"
//}
@see Thread#run, Thread.stop...