method
get_thread
v1_8_6_287 -
Show latest stable
- Class:
DEBUGGER__
get_thread(num)public
No documentation available.
# File lib/debug.rb, line 850
def get_thread(num)
th = @thread_list.index(num)
unless th
@stdout.print "No thread ##{num}\n"
throw :debug_error
end
th
end