From f0b6cb6fc7e476dc162a907c021d52831383ba34 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 27 May 2013 10:28:25 +0000 Subject: * include/ruby/ruby.h: rename RUBY_INTERNAL_EVENT_FREE to RUBY_INTERNAL_EVENT_FREEOBJ. * ext/-test-/tracepoint/tracepoint.c, ext/objspace/object_tracing.c, gc.c, vm_trace.c: catch up this change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/objspace/object_tracing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/objspace') diff --git a/ext/objspace/object_tracing.c b/ext/objspace/object_tracing.c index 2dc531c738..3caaa75065 100644 --- a/ext/objspace/object_tracing.c +++ b/ext/objspace/object_tracing.c @@ -125,7 +125,7 @@ trace_object_allocations(VALUE objspace) struct traceobj_arg arg; arg.newobj_trace = rb_tracepoint_new(0, RUBY_INTERNAL_EVENT_NEWOBJ, newobj_i, &arg); - arg.freeobj_trace = rb_tracepoint_new(0, RUBY_INTERNAL_EVENT_FREE, freeobj_i, &arg); + arg.freeobj_trace = rb_tracepoint_new(0, RUBY_INTERNAL_EVENT_FREEOBJ, freeobj_i, &arg); arg.object_table = st_init_numtable(); arg.path_table = st_init_strtable(); -- cgit v1.2.3