method

make_thread_list

v1_9_1_378 - Show latest stable - Class: DEBUGGER__
make_thread_list()
public

No documentation available.

# File lib/debug.rb, line 837
  def make_thread_list
    hash = {}
    for th in Thread::list
      if @thread_list.key? th
        hash[th] = @thread_list[th]
      else
        @max_thread += 1
        hash[th] = @max_thread
      end
    end
    @thread_list = hash
  end