aboutsummaryrefslogtreecommitdiffstats
path: root/probes.d
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2020-12-24 01:58:43 +0900
committerKoichi Sasada <ko1@atdot.net>2020-12-24 01:59:36 +0900
commitb32ed8aa41795e3b153b423ae14d2699060d73db (patch)
tree260a12d3d178b63cb04308339e1c009631f0d4c8 /probes.d
parenta8fc72f5a8c30ef7b5e78824e15e9868f52a3c33 (diff)
downloadruby-b32ed8aa41795e3b153b423ae14d2699060d73db.tar.gz
remove method__cache__clear
DTrace probe method__cache__clear is no longer used. [Bug #16658]
Diffstat (limited to 'probes.d')
-rw-r--r--probes.d11
1 files changed, 0 insertions, 11 deletions
diff --git a/probes.d b/probes.d
index 57a3d762bd..0762a2d25f 100644
--- a/probes.d
+++ b/probes.d
@@ -214,17 +214,6 @@ provider ruby {
Fired at the end of a sweep phase.
*/
probe gc__sweep__end();
-
- /*
- ruby:::method-cache-clear(class, filename, lineno);
-
- This probe is fired when the method cache is cleared.
-
- * `class` the name of the class or "global" (a string)
- * `filename` the file name where the cache is _being cleared_ (a string)
- * `lineno` the line number where the cache is _being cleared_ (an int)
- */
- probe method__cache__clear(const char *class, const char *filename, int lineno);
};
#pragma D attributes Stable/Evolving/Common provider ruby provider