aboutsummaryrefslogtreecommitdiffstats
path: root/lib/profiler.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-12-07 15:46:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-12-07 15:46:49 +0000
commit41c48d1ee8626699c345a86ede86cbada70d2b2c (patch)
treed18032936aa231b6e81dd85f193348fdf404713f /lib/profiler.rb
parentda32ce1a67677bd0f5df8fa31e0ab05c26c7d401 (diff)
downloadruby-41c48d1ee8626699c345a86ede86cbada70d2b2c.tar.gz
* eval.c (call_trace_func): klass parameter should be a
class/module that defines calling method. [ruby-talk:169307] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/profiler.rb')
-rw-r--r--lib/profiler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/profiler.rb b/lib/profiler.rb
index 9762fa1181..1067106be4 100644
--- a/lib/profiler.rb
+++ b/lib/profiler.rb
@@ -34,7 +34,7 @@ module_function
total = Process.times[0] - @@start
if total == 0 then total = 0.01 end
data = @@map.values
- data.sort!{|a,b| b[2] <=> a[2]}
+ data = data.sort_by{|x| x[2]}
sum = 0
f.printf " %% cumulative self self total\n"
f.printf " time seconds seconds calls ms/call ms/call name\n"