summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-16 09:56:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-16 09:56:56 +0000
commitdea63e4ba22d354984ce0e9e4395f8aba7152ed3 (patch)
treede99db89e8689f9fb1a782630d1d8c3e56cf565e /vm_core.h
parenta8f67eed3d796b124f9c2abb5253ae53c2ed4f9c (diff)
* vm.c (ruby_threadptr_data_type): rename to hide.
[ruby-core:38972] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@32986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_core.h b/vm_core.h
index b5433f9094..1cb7788439 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -350,10 +350,10 @@ typedef struct rb_block_struct {
VALUE proc;
} rb_block_t;
-extern const rb_data_type_t ruby_thread_data_type;
+extern const rb_data_type_t ruby_threadptr_data_type;
#define GetThreadPtr(obj, ptr) \
- TypedData_Get_Struct((obj), rb_thread_t, &ruby_thread_data_type, (ptr))
+ TypedData_Get_Struct((obj), rb_thread_t, &ruby_threadptr_data_type, (ptr))
enum rb_thread_status {
THREAD_TO_KILL,