From 53f97f1c278d2ea22a614682cd47c3ac61e57ef5 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Sat, 16 Feb 2013 03:16:05 +0000 Subject: * parse.y: add dtrace probe for symbol create. * probes.d: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- probes.d | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'probes.d') diff --git a/probes.d b/probes.d index 31aef37854..b34764edca 100644 --- a/probes.d +++ b/probes.d @@ -150,6 +150,17 @@ provider ruby { */ probe string__create(long, const char *, int); + /* + ruby:::symbol-create(string, filename, lineno); + + This probe is fired when a Symbol is about to be allocated. + + * `string` the contents of the symbol (string) + * `filename` the name of the file where the string is allocated (string) + * `lineno` the line number in the file where the string is allocated (int) + */ + probe symbol__create(const char *, const char *, int); + /* ruby:::parse-begin(sourcefile, lineno); -- cgit v1.2.3