From 8c36fa1316dfe670534a8f2ef532b866e1ca1fdb Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 4 Aug 2010 10:27:07 +0000 Subject: merges r28834 from trunk into ruby_1_9_2. -- * thread_win32.c (native_thread_join): need to wait thread, of course. [ruby-dev:41911] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28855 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 1391bece54..894fad92fc 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -507,7 +507,7 @@ native_thread_create(rb_thread_t *th) static void native_thread_join(HANDLE th) { - w32_wait_events(&th, 1, 0, 0); + w32_wait_events(&th, 1, INFINITE, 0); } #if USE_NATIVE_THREAD_PRIORITY -- cgit v1.2.3