mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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/trunk@28834 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
49e259ec58
commit
6198f539bb
2 changed files with 6 additions and 1 deletions
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue