aboutsummaryrefslogtreecommitdiffstats
path: root/doc/dtrace_probes.rdoc
diff options
context:
space:
mode:
authortmm1 <tmm1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-09 22:50:44 +0000
committertmm1 <tmm1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-09 22:50:44 +0000
commit4092574257645118e98224318b89cf80fd18a144 (patch)
treef3c24a7575d69f879ea19621ab45ea95f7a9c3f2 /doc/dtrace_probes.rdoc
parent4f7c10f06fcb6c045f12c4384bb92728db97a38a (diff)
downloadruby-4092574257645118e98224318b89cf80fd18a144.tar.gz
vm_method.c: add new ruby::method-cache-clear dtrace probe
* vm_method.c (rb_clear_method_cache_by_class): fire ruby::method-cache-clear probe on global or klass-level method cache clear [Bug #9190] * probes.d (provider ruby): new dtrace probe * doc/dtrace_probes.rdoc: docs for new probe * test/dtrace/test_method_cache.rb: test for new probe git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/dtrace_probes.rdoc')
-rw-r--r--doc/dtrace_probes.rdoc6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/dtrace_probes.rdoc b/doc/dtrace_probes.rdoc
index fe7309c5d7..a1e0fff3b0 100644
--- a/doc/dtrace_probes.rdoc
+++ b/doc/dtrace_probes.rdoc
@@ -169,4 +169,10 @@ with when they are fired and the arguments they take:
[ruby:::gc-sweep-end();]
Fired at the end of a sweep phase.
+[ruby:::method-cache-clear(class, sourcefile, lineno);]
+ Fired when the method cache is cleared.
+
+ class is the classname being cleared, or "global" (string)
+ sourcefile the file being parsed (string)
+ lineno the line number where the source ended (int)