Method: Debugger::Context#thread
- Defined in:
-
ext/ruby_debug/192/ruby_debug.c,
ext/ruby_debug/193/ruby_debug.c,
ext/ruby_debug/200/ruby_debug.c,
ext/ruby_debug/210/ruby_debug.c
Returns a thread this context is associated with.
2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 |
# File 'ext/ruby_debug/192/ruby_debug.c', line 2105 static VALUE context_thread(VALUE self) { debug_context_t *debug_context; debug_check_started(); Data_Get_Struct(self, debug_context_t, debug_context); return(id2ref(debug_context->thread_id)); } |