From 1af3a84f0d2ff06b37564d41841afcd2ed69c390 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 28 Jul 2008 12:27:43 +0000 Subject: * thread_win32.[ch] (cond_every_entry, rb_thread_cond_struct): reverted r18239 because r18245 made the changes unnecessary. * thread.c (rb_mutex_struct): define after including thread_{pthread, win32}.c. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 3654663cc..9241d274b 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -333,6 +333,16 @@ native_mutex_destroy(rb_thread_lock_t *lock) #endif } +struct cond_event_entry { + struct cond_event_entry* next; + HANDLE event; +}; + +struct rb_thread_cond_struct { + struct cond_event_entry *next; + struct cond_event_entry *last; +}; + static void native_cond_signal(rb_thread_cond_t *cond) { -- cgit