aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-23 10:50:32 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-23 10:50:32 +0000
commit4d3feac974f7b854c809f32541a30fa1be817540 (patch)
treebfb03e40fd4f575b707d011f4c61a71127306c97 /thread_win32.h
parentb2bcef7294d1a65363773cfc97ade6bd286ee63a (diff)
downloadruby-4d3feac974f7b854c809f32541a30fa1be817540.tar.gz
* thread_(pthread|win32).h: rename rb_thread_cond_t to
rb_nativethread_cond_t. * thread.c, thread_pthread.c, thread_win32.c, vm_core.h: catch up renaming. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.h')
-rw-r--r--thread_win32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_win32.h b/thread_win32.h
index 4febe15a96..c44fd91f2d 100644
--- a/thread_win32.h
+++ b/thread_win32.h
@@ -31,7 +31,7 @@ typedef union rb_thread_lock_union {
typedef struct rb_thread_cond_struct {
struct cond_event_entry *next;
struct cond_event_entry *prev;
-} rb_thread_cond_t;
+} rb_nativethread_cond_t;
typedef struct native_thread_data_struct {
HANDLE interrupt_event;