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.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'thread_win32.h') diff --git a/thread_win32.h b/thread_win32.h index cc982a9af..ec2930df1 100644 --- a/thread_win32.h +++ b/thread_win32.h @@ -25,16 +25,6 @@ typedef HANDLE rb_thread_id_t; typedef CRITICAL_SECTION rb_thread_lock_t; typedef struct rb_thread_cond_struct rb_thread_cond_t; -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; -}; - typedef struct native_thread_data_struct { HANDLE interrupt_event; } native_thread_data_t; -- cgit