From 471fb33b1a140973a3e3f6168f16b67bee95b4cd Mon Sep 17 00:00:00 2001 From: kosaki Date: Sat, 7 May 2011 03:43:27 +0000 Subject: fix mutex deadlock test hang-up. * thread_win32.c (abs_timespec_to_timeout_ms): fix 1000x calculation mistake. (ie fix hang-up native_cond_timedwait()) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31458 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 80c3890975..6c7e0d2669 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -471,7 +471,7 @@ abs_timespec_to_timeout_ms(struct timespec *ts) gettimeofday(&now, NULL); tv.tv_sec = ts->tv_sec; - tv.tv_usec = ts->tv_nsec; + tv.tv_usec = ts->tv_nsec / 1000; if (!rb_w32_time_subtract(&tv, &now)) return 0; -- cgit v1.2.3