summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-18 16:30:10 +0000
committerngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-18 16:30:10 +0000
commit979dff3ee48c2bc26ca9ac817425e2b073e12d73 (patch)
treeae07636a95196a6dd7e3ce03f73235e25c9fc0d0 /vm.c
parent2630ad09bd6f959b0379adfba84a6c7b4e4958ff (diff)
* vm_core.h, probes_helper.h (RUBY_DTRACE_FUNC_ENTRY_HOOK,
RUBY_DTRACE_FUNC_RETURN_HOOK): move from vm_core.h to new file probes_helper.h for narrowing dependency to probes.h. * common.mk (VM_CORE_H_INCLUDES): remove dependency to probes.h. * common.mk (vm.$(OBJEXT)): add dependency to probes_helper.h. * vm.c, vm_insnhelper.c: include probes_helper.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm.c b/vm.c
index f1dd008cd4..d1c1c4b621 100644
--- a/vm.c
+++ b/vm.c
@@ -19,6 +19,7 @@
#include "iseq.h"
#include "eval_intern.h"
#include "probes.h"
+#include "probes_helper.h"
static inline VALUE *
VM_EP_LEP(VALUE *ep)