diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-09 02:13:41 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-09 02:13:41 +0000 |
commit | 71b1673229c57cd44b2ffe79bb094cfb986fbeca () | |
tree | 4aeff26a5875f6de3a601af2e405ce001e33fd4d /lib/profiler.rb | |
parent | 8dfc2f81c000e732ffd1d7bdb7facac3e280c9de (diff) |
* lib/profiler.rb (Profiler__#print_profile): sort in the descending
order of cumulative time. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/profiler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ module_function total = Process.times[0] - @@start if total == 0 then total = 0.01 end data = @@map.values - 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" |