From c6f2c9383f446f92e482a6e1c7e13772affde8d7 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 8 Feb 2014 07:03:43 +0000 Subject: * gc.c, gc.h (rb_objspace_marked_object_p): added. This function *ONLY* works just after marking phase, before any sweeping. This function is highly depending current GC implementation and can be removed future version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44886 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'gc.h') diff --git a/gc.h b/gc.h index 09edafa027..ae62b091af 100644 --- a/gc.h +++ b/gc.h @@ -91,6 +91,7 @@ void rb_objspace_reachable_objects_from(VALUE obj, void (func)(VALUE, void *), v void rb_objspace_reachable_objects_from_root(void (func)(const char *category, VALUE, void *), void *data); int rb_objspace_markable_object_p(VALUE obj); int rb_objspace_internal_object_p(VALUE obj); +int rb_objspace_marked_object_p(VALUE obj); void rb_objspace_each_objects( int (*callback)(void *start, void *end, size_t stride, void *data), -- cgit v1.2.3