summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-11 01:17:11 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-11 01:17:11 +0000
commit71fdb43e6ecab9d48c24c6e422685c86406a5dda (patch)
treec050d00f9110ed37583e287306ac1066ef69d67c /thread.c
parent2e29d255d369c5c0ba9321dd56fc54be9d75d2ab (diff)
* thread.c (rb_thread_execute_interrupts): use GetThreadPtr to extract
rb_thread_t from VALUE. reorted by Motohiro KOSAKI. [ruby-dev:43700] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index 433e7be4fb..3365a55020 100644
--- a/thread.c
+++ b/thread.c
@@ -1360,9 +1360,11 @@ rb_threadptr_execute_interrupts(rb_thread_t *th)
}
void
-rb_thread_execute_interrupts(VALUE th)
+rb_thread_execute_interrupts(VALUE thval)
{
- rb_threadptr_execute_interrupts_rec((rb_thread_t *)th, 0);
+ rb_thread_t *th;
+ GetThreadPtr(thval, th);
+ rb_threadptr_execute_interrupts_rec(th, 0);
}
void