In Files

  • profiler.rb

Class/Module Index [+]

Quicksearch

Profiler__

Constants

PROFILE_PROC

Public Instance Methods

start_profile() click to toggle source
 
               # File profiler.rb, line 23
def start_profile
  @@start = Process.times[0]
  @@stack = []
  @@map = {}
  set_trace_func PROFILE_PROC
end
            
stop_profile() click to toggle source
 
               # File profiler.rb, line 29
def stop_profile
  set_trace_func nil
end