aboutsummaryrefslogtreecommitdiffstats
path: root/transient_heap.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-30 22:01:17 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-30 22:01:17 +0000
commit873d57347fca4fc7f407c2bca45f90797ab6f864 (patch)
tree984633263d735f6ead2991ea6f6b8a71e1ed68ed /transient_heap.h
parent437392232a142b9e56d7d6daa1e595dacb00c9db (diff)
downloadruby-873d57347fca4fc7f407c2bca45f90797ab6f864.tar.gz
support theap for T_OBJECT.
* variable.c: now instance variable space has theap supports. obj_ivar_heap_alloc() tries to acquire memory from theap. * debug_counter.h: add some counters for theap. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65451 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transient_heap.h')
-rw-r--r--transient_heap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/transient_heap.h b/transient_heap.h
index ac0eaadb78..0d90e4fc56 100644
--- a/transient_heap.h
+++ b/transient_heap.h
@@ -34,5 +34,6 @@ int rb_transient_heap_managed_ptr_p(const void *ptr);
/* evacuate functions */
void rb_ary_transient_heap_evacuate(VALUE ary, int promote);
+void rb_obj_transient_heap_evacuate(VALUE ary, int promote);
#endif