From b74a6dde1bd8552806de628b2167a914bd5059db Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 28 Jul 2008 07:02:07 +0000 Subject: * thread_win32.[ch]: moved definitions of cond_every_entry and rb_thread_cond_struct from .c to .h because rb_thread_cond_struct is used in vm_core.h. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 9241d274b..3654663cc 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -333,16 +333,6 @@ 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