From ea637ebaa4491d50578002a9a7d26cf4f55c7a58 Mon Sep 17 00:00:00 2001 From: nagachika Date: Wed, 25 Jul 2012 16:40:04 +0000 Subject: [PATCH] * thread.c (thread_create_core, Init_Thread): hide th->async_errinfo_queue and th->async_errinfo_mask_stack from ObjectSpace.each_object. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36539 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ thread.c | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index ed6f8f06ef..6d473d4df5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Jul 26 00:42:23 2012 CHIKANAGA Tomoyuki + + * thread.c (thread_create_core, Init_Thread): hide + th->async_errinfo_queue and th->async_errinfo_mask_stack from + ObjectSpace.each_object. + Wed Jul 25 17:41:05 2012 Nobuyoshi Nakada * complex.c, rational.c: compatible marshal loader for compatibilities diff --git a/thread.c b/thread.c index 1cc13a87dd..13c8942368 100644 --- a/thread.c +++ b/thread.c @@ -562,7 +562,7 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS)) th->priority = current_th->priority; th->thgroup = current_th->thgroup; - th->async_errinfo_queue = rb_ary_new(); + th->async_errinfo_queue = rb_ary_tmp_new(0); th->async_errinfo_queue_checked = 0; th->async_errinfo_mask_stack = rb_ary_dup(current_th->async_errinfo_mask_stack); @@ -5123,9 +5123,10 @@ Init_Thread(void) gvl_acquire(th->vm, th); native_mutex_initialize(&th->interrupt_lock); - th->async_errinfo_queue = rb_ary_new(); + th->async_errinfo_queue = rb_ary_tmp_new(0); th->async_errinfo_queue_checked = 0; - th->async_errinfo_mask_stack = rb_ary_new(); + th->async_errinfo_mask_stack = rb_ary_tmp_new(0); + RBASIC(th->async_errinfo_mask_stack)->klass = 0; } }