Method: RubyProf::Thread#call_tree

Defined in:
ext/ruby_prof/rp_thread.c

#call_treeCallTree

Returns the root call tree.

Returns:



348
349
350
351
352
# File 'ext/ruby_prof/rp_thread.c', line 348

static VALUE prof_call_tree(VALUE self)
{
    thread_data_t* thread = prof_get_thread(self);
    return prof_call_tree_wrap(thread->call_tree);
}