mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* 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
This commit is contained in:
parent
0fe2051c93
commit
4bdd909518
9 changed files with 39 additions and 28 deletions
4
probes.d
4
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 *);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue