From 8252ef0ad3457b5bd68fa16c40d7015a6728743c Mon Sep 17 00:00:00 2001 From: tenderlove Date: Sat, 30 May 2015 02:04:26 +0000 Subject: 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 --- probes.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'probes.d') 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); -- cgit v1.2.3