From 1cf72524fe23e12d75aa4ae1205e03dab3a965ec Mon Sep 17 00:00:00 2001 From: mame Date: Mon, 28 Jul 2008 11:17:43 +0000 Subject: * vm_core.h: move the definition of struct rb_mutex_struct. * thread.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index c965a657d..c27595a21 100644 --- a/thread.c +++ b/thread.c @@ -62,7 +62,14 @@ static double timeofday(void); struct timeval rb_time_interval(VALUE); static int rb_thread_dead(rb_thread_t *th); -typedef struct rb_mutex_struct mutex_t; +typedef struct rb_mutex_struct +{ + rb_thread_lock_t lock; + rb_thread_cond_t cond; + struct rb_thread_struct volatile *th; + volatile int cond_waiting, cond_notified; + struct rb_mutex_struct *next_mutex; +} mutex_t; static void rb_mutex_unlock_all(mutex_t *mutex); static void rb_check_deadlock(rb_vm_t *vm); -- cgit