[#75225] [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7) — k@...
Issue #12324 has been reported by Kazuki Yamaguchi.
6 messages
2016/04/27
[#78693] Re: [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7)
— Eric Wong <normalperson@...>
2016/12/17
k@rhe.jp wrote:
[#78701] Re: [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7)
— Kazuki Yamaguchi <k@...>
2016/12/17
On Sat, Dec 17, 2016 at 01:31:12AM +0000, Eric Wong wrote:
[#78702] Re: [Ruby trunk Feature#12324] Support OpenSSL 1.1.0 (and drop support for 0.9.6/0.9.7)
— Eric Wong <normalperson@...>
2016/12/17
Kazuki Yamaguchi <k@rhe.jp> wrote:
[ruby-core:75214] [Ruby trunk Bug#12280] IO.copy_stream(IO, IO) fails with "pread() not implemented"
From:
naruse@...
Date:
2016-04-27 06:06:23 UTC
List:
ruby-core #75214
Issue #12280 has been updated by Yui NARUSE. Benoit Daloze wrote: > For me, having a message like: > "NotImplementedError: IO.copy_stream with offset is not supported on Windows since it is not atomic" > would be a good enough fix for this. IO.copy_stream is a utility method. It works as expected and fast if there's a suitable API like sendfile. On this precondition, IO.copy_stream should work even on Windows. You can simply acquire GVL or fine grained lock to achieve multithread safety. Anyway you can provide pread with ReadFile. You may know, on Windows read() is our own function and the real name is rb_w32_read. You can implement rb_w32_pread with ReadFile in win32/win32.c. ---------------------------------------- Bug #12280: IO.copy_stream(IO, IO) fails with "pread() not implemented" https://bugs.ruby-lang.org/issues/12280#change-58347 * Author: Benoit Daloze * Status: Open * Priority: Normal * Assignee: * ruby -v: * Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN ---------------------------------------- IO.copy_stream on Windows with IO having an offset fails with: NotImplementedError: pread() not implemented This seems suboptimal, should a clearer be reported? Is it a platform limitation? -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>