mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
merge revision(s) 33132:
* thread.c (rb_thread_select): critical typo in r33117. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@33137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c45ad62966
commit
e733edd76b
2 changed files with 5 additions and 1 deletions
2
thread.c
2
thread.c
|
@ -2704,7 +2704,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue