From 4d846f2b8c68b976c9b241aec65b9ddae714f5e7 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 30 Jun 2008 05:42:34 +0000 Subject: * gc.c (rb_newobj): prohibit call of rb_newobj() during gc when USE_VALUE_CACHE is not defined (normal case). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ gc.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 089d34097..aed15cf97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 30 14:41:36 2008 NAKAMURA Usaku + + * gc.c (rb_newobj): prohibit call of rb_newobj() during gc when + USE_VALUE_CACHE is not defined (normal case). + Mon Jun 30 10:28:33 2008 Yukihiro Matsumoto * ext/syslog/syslog.c (syslog_write): syslog operations should be diff --git a/gc.c b/gc.c index 966aaa193..31c1547e3 100644 --- a/gc.c +++ b/gc.c @@ -732,6 +732,8 @@ rb_newobj(void) return v; #else rb_objspace_t *objspace = &rb_objspace; + if (during_gc) + rb_bug("object allocation during garbage collection phase"); return rb_newobj_from_heap(objspace); #endif } -- cgit