るりまサーチ

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

別のキーワード

  1. drb thread
  2. etc sc_thread_threads_max
  3. tracer get_thread_no
  4. thread pending_interrupt?
  5. thread abort_on_exception

ライブラリ

検索結果

TracePoint.new(*events) {|obj| ... } -> TracePoint (31.0)

新しい TracePoint オブジェクトを作成して返します。トレースを有効 にするには TracePoint#enable を実行してください。

...新しい TracePoint オブジェクトを作成して返します。トレースを有効
にするには TracePoint#enable を実行してください。

//emlist[例:irb で実行した場合][ruby]{
trace = TracePoint.new(:call) do |tp|
p [tp.lineno, tp.defined_class, tp.method_id, tp.even...
...ックの終了。

: :thread_begin

スレッドの開始。

: :thread_end

スレッドの終了。



指定イベントに関連しない情報を取得するメソッドを実行した場合には
RuntimeError が発生します。

//emlist[例][ruby]{
TracePoint
.trace(:line) do |tp|...
...ntimeError が発生します。

//emlist[例][ruby]{
TracePoint
.trace(:line) do |tp|
$tp = tp
end
$tp.lineno # => access from outside (RuntimeError)
//}

他のスレッドから参照する事も禁じられています。

@raise ThreadError ブロックを指定しなかった場合に発生...
...ン。

: :raise

例外の発生。

: :b_call

ブロックの開始。

: :b_return

ブロックの終了。

: :thread_begin

スレッドの開始。

: :thread_end

スレッドの終了。

: :fiber_switch

ファイバーの切り替え。


指定イベントに関連しない...