* 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
This commit is contained in:
nagachika 2012-07-25 16:40:04 +00:00
Родитель 003c45f9cd
Коммит ea637ebaa4
2 изменённых файлов: 10 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Thu Jul 26 00:42:23 2012 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
* 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 <nobu@ruby-lang.org>
* complex.c, rational.c: compatible marshal loader for compatibilities

Просмотреть файл

@ -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;
}
}