* 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
This commit is contained in:
matz 2005-12-07 15:46:49 +00:00
parent da32ce1a67
commit 41c48d1ee8
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Dec 8 00:40:52 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (call_trace_func): klass parameter should be a
class/module that defines calling method. [ruby-talk:169307]
Wed Dec 7 17:10:27 2005 Kazuhiro NISHIYAMA <zn@mbf.nifty.com> Wed Dec 7 17:10:27 2005 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* sprintf.c (rb_f_sprintf): [ruby-dev:27967] * sprintf.c (rb_f_sprintf): [ruby-dev:27967]

2
eval.c
View File

@ -2514,7 +2514,7 @@ call_trace_func(rb_event_t event, NODE *node, VALUE self, ID id, VALUE klass /*
klass = RBASIC(klass)->klass; klass = RBASIC(klass)->klass;
} }
else if (FL_TEST(klass, FL_SINGLETON)) { else if (FL_TEST(klass, FL_SINGLETON)) {
klass = self; klass = rb_iv_get(klass, "__attached__");
} }
} }
PUSH_TAG(PROT_NONE); PUSH_TAG(PROT_NONE);

View File

@ -34,7 +34,7 @@ module_function
total = Process.times[0] - @@start total = Process.times[0] - @@start
if total == 0 then total = 0.01 end if total == 0 then total = 0.01 end
data = @@map.values data = @@map.values
data.sort!{|a,b| b[2] <=> a[2]} data = data.sort_by{|x| x[2]}
sum = 0 sum = 0
f.printf " %% cumulative self self total\n" f.printf " %% cumulative self self total\n"
f.printf " time seconds seconds calls ms/call ms/call name\n" f.printf " time seconds seconds calls ms/call ms/call name\n"