1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* thread.c (rb_thread_s_check_interrupt): removed redundant

GET_THREAD().



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37732 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2012-11-19 11:15:07 +00:00
parent 4b25e0ceca
commit 57ee812851
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 20 10:14:22 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread.c (rb_thread_s_check_interrupt): removed redundant
GET_THREAD().
Tue Nov 20 10:12:46 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread.c (rb_threadptr_async_errinfo_active_p): added a small

View file

@ -1682,12 +1682,12 @@ check_interrupt_func(rb_thread_t *cur_th)
static VALUE
rb_thread_s_check_interrupt(VALUE self)
{
rb_thread_t *th = GET_THREAD();
rb_thread_t *cur_th = GET_THREAD();
if (!rb_threadptr_async_errinfo_empty_p(th)) {
if (!rb_threadptr_async_errinfo_empty_p(cur_th)) {
VALUE mask = rb_hash_new();
rb_hash_aset(mask, rb_cObject, ID2SYM(rb_intern("immediate")));
rb_threadptr_interrupt_mask(GET_THREAD(), mask, check_interrupt_func);
rb_threadptr_interrupt_mask(cur_th, mask, check_interrupt_func);
}
return Qnil;