Skip to content

Commit

Permalink
* vm_trace.c: separate trace_func related functions from
Browse files Browse the repository at this point in the history
  thread.c.
* thread.c: ditto.
* common.mk: add vm_trace.o.
* inits.c: call Init_vm_trace().



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36703 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ko1 committed Aug 15, 2012
1 parent d2e9b54 commit 8eb9310
Show file tree
Hide file tree
Showing 5 changed files with 612 additions and 555 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
Wed Aug 15 11:39:53 2012 Koichi Sasada <ko1@atdot.net>

* vm_trace.c: separate trace_func related functions from
thread.c.

* thread.c: ditto.

* common.mk: add vm_trace.o.

* inits.c: call Init_vm_trace().

Tue Aug 14 16:25:46 2012 Shugo Maeda <shugo@ruby-lang.org>

* test/erb/test_erb.rb (test_html_escape): add assertions for the
Expand Down
4 changes: 4 additions & 0 deletions common.mk
Expand Up @@ -92,6 +92,7 @@ COMMONOBJS = array.$(OBJEXT) \
vm.$(OBJEXT) \
vm_dump.$(OBJEXT) \
vm_backtrace.$(OBJEXT) \
vm_trace.$(OBJEXT) \
thread.$(OBJEXT) \
cont.$(OBJEXT) \
$(BUILTIN_ENCOBJS) \
Expand Down Expand Up @@ -781,6 +782,9 @@ id.$(OBJEXT): {$(VPATH)}id.c $(RUBY_H_INCLUDES) $(ID_H_INCLUDES)
vm_backtrace.$(OBJEXT): {$(VPATH)}vm_backtrace.c \
$(VM_CORE_H_INCLUDES) $(RUBY_H_INCLUDES) \
{$(VPATH)}internal.h {$(VPATH)}iseq.h
vm_trace.$(OBJEXT): {$(VPATH)}vm_trace.c \
$(VM_CORE_H_INCLUDES) $(RUBY_H_INCLUDES) \
{$(VPATH)}internal.h
miniprelude.$(OBJEXT): {$(VPATH)}miniprelude.c $(RUBY_H_INCLUDES) \
$(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h {$(VPATH)}internal.h
prelude.$(OBJEXT): {$(VPATH)}prelude.c $(RUBY_H_INCLUDES) \
Expand Down
1 change: 1 addition & 0 deletions inits.c
Expand Up @@ -60,5 +60,6 @@ rb_call_inits(void)
CALL(Rational);
CALL(Complex);
CALL(version);
CALL(vm_trace);
}
#undef CALL

0 comments on commit 8eb9310

Please sign in to comment.