diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-23 10:38:36 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-23 10:38:36 +0000 |
commit | 2b1088c89fd003aefa4b3bc585ae5e041334fe0b (patch) | |
tree | 2264f743c91b039912a2a40b7accee96c9ff847f /thread_pthread.c | |
parent | 55201cac9ea35420ef63880323d75f603374413e (diff) | |
download | ruby-2b1088c89fd003aefa4b3bc585ae5e041334fe0b.tar.gz |
* thread_pthread.h, thread_win32.h: rename rb_thread_id_t to
rb_nativethread_id_t.
* thread_pthread.c, vm_core.h: use rb_nativethread_id_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r-- | thread_pthread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thread_pthread.c b/thread_pthread.c index 378dede9ea..e13e26786e 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -572,7 +572,7 @@ get_stack(void **addr, size_t *size) #endif static struct { - rb_thread_id_t id; + rb_nativethread_id_t id; size_t stack_maxsize; VALUE *stack_start; #ifdef __ia64 @@ -694,7 +694,7 @@ ruby_init_stack(volatile VALUE *addr static int native_thread_init_stack(rb_thread_t *th) { - rb_thread_id_t curr = pthread_self(); + rb_nativethread_id_t curr = pthread_self(); if (pthread_equal(curr, native_main_thread.id)) { th->machine_stack_start = native_main_thread.stack_start; |