From: KOSAKI Motohiro <kosaki.motohiro@...>
Date: 2011-05-04T07:41:51+09:00
Subject: [ruby-core:35984] Re: [Ruby 1.9 - Feature #4531] [PATCH 0/7] use poll() instead of select() in certain cases

> My patches don't touch the rb_thread_fd_select() code. �thread.c:2393
> is in rb_fd_copy(), not rb_thread_fd_select(), and is the following:
>
> � memcpy(dst->fdset, src, size);
>
> Shouldn't that be:
>
> � memcpy(dst->fdset, src->fdset, size);
>
> since r31395?

Right. Thanks for good catching.
I'll test your patch again.