aboutsummaryrefslogtreecommitdiffstats
path: root/probes.d
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-30 02:04:26 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-30 02:04:26 +0000
commit8252ef0ad3457b5bd68fa16c40d7015a6728743c (patch)
tree8fb4e3c3f90be1cd05a0d198c4517431699edd38 /probes.d
parent354c9747e49ae1c68fa4be696da36cc51c40713c (diff)
downloadruby-8252ef0ad3457b5bd68fa16c40d7015a6728743c.tar.gz
change lingering dtrace probe documentation from function- to method-
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'probes.d')
-rw-r--r--probes.d6
1 files changed, 3 insertions, 3 deletions
diff --git a/probes.d b/probes.d
index dc20d30172..57a3d762bd 100644
--- a/probes.d
+++ b/probes.d
@@ -17,7 +17,7 @@ provider ruby {
ruby:::method-return(classname, methodname, filename, lineno);
This probe is fired just after a method has returned. The arguments are
- the same as "ruby:::function-entry".
+ the same as "ruby:::method-entry".
*/
probe method__return(const char *classname, const char *methodname, const char *filename, int lineno);
@@ -25,14 +25,14 @@ provider ruby {
ruby:::cmethod-entry(classname, methodname, filename, lineno);
This probe is fired just before a C method is entered. The arguments are
- the same as "ruby:::function-entry".
+ the same as "ruby:::method-entry".
*/
probe cmethod__entry(const char *classname, const char *methodname, const char *filename, int lineno);
/*
ruby:::cmethod-return(classname, methodname, filename, lineno);
This probe is fired just before a C method returns. The arguments are
- the same as "ruby:::function-entry".
+ the same as "ruby:::method-entry".
*/
probe cmethod__return(const char *classname, const char *methodname, const char *filename, int lineno);