From 0a2da327f46ec0e129de52f668d00f04f2529b7e Mon Sep 17 00:00:00 2001 From: kosaki Date: Mon, 19 Nov 2012 11:07:53 +0000 Subject: * thread.c (rb_thread_blocking_region_end): replaced GET_THREAD() with ruby_thread_from_native(). We don't have GVL here. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 1a37b2873a..273cf24b04 100644 --- a/thread.c +++ b/thread.c @@ -1070,7 +1070,7 @@ void rb_thread_blocking_region_end(struct rb_blocking_region_buffer *region) { int saved_errno = errno; - rb_thread_t *th = GET_THREAD(); + rb_thread_t *th = ruby_thread_from_native(); blocking_region_end(th, region); xfree(region); RUBY_VM_CHECK_INTS_BLOCKING(th); -- cgit v1.2.3