Skip to content

Commit

Permalink
merges r28834 from trunk into ruby_1_9_2.
Browse files Browse the repository at this point in the history
--
* 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
  • Loading branch information
mame committed Aug 4, 2010
1 parent 4313bec commit 8c36fa1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Mon Aug 2 16:34:32 2010 NAKAMURA Usaku <usa@ruby-lang.org>

* thread_win32.c (native_thread_join): need to wait thread, of course.
[ruby-dev:41911]

Mon Aug 2 12:22:22 2010 NAKAMURA Usaku <usa@ruby-lang.org>

* file.c (file_expand_path): wrong condition. [ruby-core:31591]
Expand Down
2 changes: 1 addition & 1 deletion thread_win32.c
Expand Up @@ -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
Expand Down

0 comments on commit 8c36fa1

Please sign in to comment.