about summary refs log tree commit homepage
path: root/lib/rainbows/sync_close.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-10-13 23:45:59 +0000
committerEric Wong <e@80x24.org>2015-10-14 20:39:32 +0000
commit98819daf5c638fec4d20bb3960e0d3188e772ab8 (patch)
tree74beabd854c6048a6fc1e5843155794c1e6ee6e1 /lib/rainbows/sync_close.rb
parent192c9507708741237ca2906ab499bbf89ea8be8f (diff)
downloadrainbows-98819daf5c638fec4d20bb3960e0d3188e772ab8.tar.gz
This will allow us use the sendfile syscall under Linux on
Ruby which favor #read/#readpartial methods for non-IO objects.

This also allows us to revert changes made in
commit db790ff3531acdfa23ab290998bba29360a6782b
("sync_close: This fix breakage from Ruby-trunk r50118")
Diffstat (limited to 'lib/rainbows/sync_close.rb')
-rw-r--r--lib/rainbows/sync_close.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/rainbows/sync_close.rb b/lib/rainbows/sync_close.rb
index 8738cae..999f003 100644
--- a/lib/rainbows/sync_close.rb
+++ b/lib/rainbows/sync_close.rb
@@ -16,14 +16,6 @@ class Rainbows::SyncClose
     @body.respond_to?(m)
   end
 
-  def readpartial(*args)
-    @body.readpartial(*args)
-  end
-
-  def read(*args)
-    @body.read(*args)
-  end
-
   def to_path
     @body.to_path
   end