aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-07 06:22:39 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-07 06:22:39 +0000
commit562a1a79297d00b9ac92498173ad1fcba9fc5f51 (patch)
treeff0a6d94c24d84a2f3d640850069a0301d495e72 /thread_win32.c
parentfa319c5774ff479e0961f0710aff206f52231f86 (diff)
downloadruby-562a1a79297d00b9ac92498173ad1fcba9fc5f51.tar.gz
remove debugging code
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 360013db43..13cbbffbef 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -449,7 +449,6 @@ __cond_timedwait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex, unsigned long
struct cond_event_entry *head = (struct cond_event_entry*)cond;
entry.event = CreateEvent(0, FALSE, FALSE, 0);
- entry.mutex = mutex;
/* cond is guarded by mutex */
entry.next = head;