aboutsummaryrefslogtreecommitdiffstats
path: root/probes.d
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-28 20:20:50 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-28 20:20:50 +0000
commit4bdd9095183666d515635946085becc66a418b16 (patch)
treee2d8aeee8f590424b0f91939c9d37f518204c856 /probes.d
parent0fe2051c93197d7617ccc4f07a2dfc697cde9df7 (diff)
downloadruby-4bdd9095183666d515635946085becc66a418b16.tar.gz
* probes.d: Change function-entry probe to method-entry.
* insns.def: ditto * probes_helper.h: ditto * test/dtrace/test_function_entry.rb: ditto * test/dtrace/test_singleton_function.rb: ditto * vm.c: ditto * vm_eval.c: ditto * vm_insnhelper.c: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'probes.d')
-rw-r--r--probes.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/probes.d b/probes.d
index d2b475a51c..1c5e03f756 100644
--- a/probes.d
+++ b/probes.d
@@ -1,8 +1,8 @@
#include "vm_opts.h"
provider ruby {
- probe function__entry(const char *, const char *, const char *, int);
- probe function__return(const char *, const char *, const char *, int);
+ probe method__entry(const char *, const char *, const char *, int);
+ probe method__return(const char *, const char *, const char *, int);
probe require__entry(const char *, const char *, int);
probe require__return(const char *);