aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-28 07:02:07 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-28 07:02:07 +0000
commit9b3aade1b6e848e22114e987e7f1d07c859e37c1 (patch)
tree4cf105be239e8a3c97871e034a0fe4045a12b592 /thread_win32.c
parent99c8c71243dafbbe29e12cea325d65b180687e8e (diff)
downloadruby-9b3aade1b6e848e22114e987e7f1d07c859e37c1.tar.gz
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@18238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 9241d274b0..3654663cc6 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)
{