From 0958923530594873703ccaec9ab92aa623f5578f Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 4 Feb 2011 17:08:44 +0000 Subject: * vm.c (ruby_thread_data_type): add prefix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index f20dfb02f3..997ed38f13 100644 --- a/vm_core.h +++ b/vm_core.h @@ -347,10 +347,10 @@ typedef struct rb_block_struct { VALUE proc; } rb_block_t; -extern const rb_data_type_t thread_data_type; +extern const rb_data_type_t ruby_thread_data_type; #define GetThreadPtr(obj, ptr) \ - TypedData_Get_Struct((obj), rb_thread_t, &thread_data_type, (ptr)) + TypedData_Get_Struct((obj), rb_thread_t, &ruby_thread_data_type, (ptr)) enum rb_thread_status { THREAD_TO_KILL, -- cgit v1.2.3