1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* thread.c (rb_thread_select): critical typo in r33117.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2011-08-30 15:49:55 +00:00
parent 13a77870de
commit a34f81561d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Aug 31 00:48:38 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* thread.c (rb_thread_select): critical typo in r33117.
Wed Aug 31 00:30:49 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* test/-ext-/old_thread_select/test_old_thread_select.rb

View file

@ -2708,7 +2708,7 @@ rb_thread_select(int max, fd_set * read, fd_set * write, fd_set * except,
rb_fd_copy(efds, except, max);
}
retval = rb_thread_fd_select(max, rfds, efds, wfds, timeout);
retval = rb_thread_fd_select(max, rfds, wfds, efds, timeout);
if (rfds)
rb_fd_term(rfds);